| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| CustomPreconditionErrorException |
|
| 1.0;1 |
| 1 | package liquibase.exception; | |
| 2 | ||
| 3 | /** | |
| 4 | * Thrown when a precondition failed. | |
| 5 | */ | |
| 6 | public class CustomPreconditionErrorException extends Exception { | |
| 7 | ||
| 8 | private static final long serialVersionUID = 1L; | |
| 9 | ||
| 10 | public CustomPreconditionErrorException(String message) { | |
| 11 | 0 | super(message); |
| 12 | 0 | } |
| 13 | ||
| 14 | public CustomPreconditionErrorException(String message, Throwable e) { | |
| 15 | 0 | super(message, e); |
| 16 | 0 | } |
| 17 | } |