01: package liquibase.exception;
02:
03: /**
04: * Thrown if a change is encountered that cannot be rolled back.
05: */
06: public class RollbackImpossibleException extends LiquibaseException {
07:
08: private static final long serialVersionUID = 1L;
09:
10: public RollbackImpossibleException() {
11: }
12:
13: public RollbackImpossibleException(String message) {
14: super (message);
15: }
16:
17: public RollbackImpossibleException(String message, Throwable cause) {
18: super (message, cause);
19: }
20:
21: public RollbackImpossibleException(Throwable cause) {
22: super(cause);
23: }
24: }
|