View Javadoc

1   package pt.digitalis.dif.exception.manager;
2   
3   /**
4    * Thrown when a requested LDAP operation does not succeed.
5    * 
6    * @author Joćo Galaio <a href="mailto:jgalaio@digitalis.pt">jgalaio@digitalis.pt</a><br/>
7    * @created 2008/04/02
8    */
9   public class RegistrationManagerException extends Exception {
10  
11      /** The serial version ID. */
12      private static final long serialVersionUID = -312327368449607144L;
13  
14      /**
15       * Constructs a new exception with a message.
16       * 
17       * @param message
18       *            the exception message
19       */
20      public RegistrationManagerException(String message)
21      {
22          super(message);
23      }
24  
25      /**
26       * Constructs a new exception with a message and a cause.
27       * 
28       * @param message
29       *            the exception message
30       * @param cause
31       *            the exception cause
32       */
33      public RegistrationManagerException(String message, Throwable cause)
34      {
35          super(message, cause);
36      }
37  
38      /**
39       * Constructs a new exception with a cause.
40       * 
41       * @param cause
42       *            the exception cause
43       */
44      public RegistrationManagerException(Throwable cause)
45      {
46          super(cause);
47      }
48  }