View Javadoc

1   package liquibase.exception;
2   
3   /**
4    * Thrown if a change is encountered that cannot be rolled back.
5    */
6   public class RollbackImpossibleException extends LiquibaseException {
7   
8       private static final long serialVersionUID = 1L;
9   
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  }