KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejbca > core > ejb > ServiceLocatorException


1 package org.ejbca.core.ejb;
2
3 /**
4  * Exception related to resource localization.
5  *
6  * If such an exception is thrown it means anyway that the resource
7  * lookup dramatically failed, which means that either it is a user
8  * error or simply the server is totally down, so there is no point
9  * in throwing a checked exception that the user won't really be
10  * able to handle.
11  *
12  * @version $Id: ServiceLocatorException.java,v 1.1 2006/01/17 20:30:04 anatom Exp $
13  */

14 public class ServiceLocatorException extends RuntimeException JavaDoc {
15
16     public ServiceLocatorException() {
17         super();
18     }
19
20     public ServiceLocatorException(String JavaDoc message) {
21         super(message);
22     }
23
24     public ServiceLocatorException(Throwable JavaDoc cause) {
25         super(cause);
26     }
27
28     public ServiceLocatorException(String JavaDoc message, Throwable JavaDoc cause) {
29         super(message, cause);
30     }
31 }
32
Popular Tags