View Javadoc

1   package org.riverock.dbrevision.exception;
2   
3   /**
4    * User: SergeMaslyukov
5    * Date: 29.07.2007
6    * Time: 0:41:59
7    */
8   public class ConfigFileNotFoundException extends DbRevisionException {
9   
10      /**
11       * Empty constructor
12       */
13      public ConfigFileNotFoundException(){
14          super();
15      }
16  
17      /**
18       * Constructor
19       * @param s describing exception
20       */
21      public ConfigFileNotFoundException(String s){
22          super(s);
23      }
24  
25      /**
26       * Constructor
27       *
28       * @param cause cause exception
29       */
30      public ConfigFileNotFoundException(Throwable cause){
31          super(cause);
32      }
33  
34      /**
35       * Constructor
36       *
37       * @param s describing exception
38       * @param cause cause exception
39       */
40      public ConfigFileNotFoundException(String s, Throwable cause){
41          super(s, cause);
42      }
43  }