| 1 | |
package liquibase.exception; |
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
public class RollbackImpossibleException extends LiquibaseException { |
| 7 | |
|
| 8 | |
private static final long serialVersionUID = 1L; |
| 9 | |
|
| 10 | 0 | public RollbackImpossibleException() { |
| 11 | 0 | } |
| 12 | |
|
| 13 | |
public RollbackImpossibleException(String message) { |
| 14 | 0 | super(message); |
| 15 | 0 | } |
| 16 | |
|
| 17 | |
public RollbackImpossibleException(String message, Throwable cause) { |
| 18 | 0 | super(message, cause); |
| 19 | 0 | } |
| 20 | |
|
| 21 | |
public RollbackImpossibleException(Throwable cause) { |
| 22 | 0 | super(cause); |
| 23 | 0 | } |
| 24 | |
} |