View Javadoc

1   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          super(message);
21      }
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          super(message, cause);
32      }
33  
34      /**
35       * @param cause
36       *            the error cause
37       */
38      public SanityCheckException(Throwable cause)
39      {
40          super(cause);
41      }
42  }