1 package com.aragost.javahg.internals;
2
3 /**
4 * This exception is thrown if an error occurs during load of a service
5 * with the {@link ServiceLoader}.
6 *
7 * @author Sebastian Sdorra
8 */
9 public final class ServiceException extends Exception
10 {
11 private static final long serialVersionUID = 4453421798347799570L;
12
13 public ServiceException(){
14 }
15
16 public ServiceException(String message){
17 super(message);
18 }
19
20 public ServiceException(String message, Throwable cause){
21 super(message, cause);
22 }
23
24 public ServiceException(Throwable cause){
25 super(cause);
26 }
27
28 }