Coverage Report - pt.digitalis.dif.exception.manager.RegistrationManagerException
 
Classes in this File Line Coverage Branch Coverage Complexity
RegistrationManagerException
0%
0/7
N/A
1
 
 1  0
 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  0
         super(message);
 23  0
     }
 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  0
         super(message, cause);
 36  0
     }
 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  0
         super(cause);
 47  0
     }
 48  
 }