View Javadoc

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