1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.limmen.crs.client.locator;
17
18 import org.limmen.crs.exception.ConfigurationException;
19
20 public class ServiceLocatorException extends ConfigurationException {
21
22 private static final long serialVersionUID = -3184113359593360363L;
23
24 public ServiceLocatorException(String explanation) {
25
26 super(explanation);
27 }
28
29 public ServiceLocatorException(String message, Throwable cause) {
30
31 super(message, cause);
32 }
33
34 public ServiceLocatorException(Throwable cause) {
35
36 super(cause);
37 }
38 }