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