Coverage Report - pt.digitalis.dif.sanitycheck.exceptions.SanityCheckException
 
Classes in this File Line Coverage Branch Coverage Complexity
SanityCheckException
0%
0/7
N/A
1
 
 1  0
 package pt.digitalis.dif.sanitycheck.exceptions;
 2  
 
 3  
 import pt.digitalis.dif.exception.AbstractCustomBusinessException;
 4  
 
 5  
 /**
 6  
  * @author Galaio da Silva <a href="mailto:jgalaio@digitalis.pt">jgalaio@digitalis.pt</a><br/>
 7  
  * @created 4 de Jul de 2011
 8  
  */
 9  
 public class SanityCheckException extends AbstractCustomBusinessException {
 10  
 
 11  
     /** the serial version UID */
 12  
     private static final long serialVersionUID = 1L;
 13  
 
 14  
     /**
 15  
      * @param message
 16  
      *            the error message
 17  
      */
 18  
     public SanityCheckException(String message)
 19  
     {
 20  0
         super(message);
 21  0
     }
 22  
 
 23  
     /**
 24  
      * @param message
 25  
      *            the error message
 26  
      * @param cause
 27  
      *            the error cause
 28  
      */
 29  
     public SanityCheckException(String message, Throwable cause)
 30  
     {
 31  0
         super(message, cause);
 32  0
     }
 33  
 
 34  
     /**
 35  
      * @param cause
 36  
      *            the error cause
 37  
      */
 38  
     public SanityCheckException(Throwable cause)
 39  
     {
 40  0
         super(cause);
 41  0
     }
 42  
 }