| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| UnexpectedLiquibaseException |
|
| 1.0;1 |
| 1 | package liquibase.exception; | |
| 2 | ||
| 3 | public class UnexpectedLiquibaseException extends RuntimeException { | |
| 4 | public UnexpectedLiquibaseException(String message) { | |
| 5 | 0 | super(message); |
| 6 | 0 | } |
| 7 | ||
| 8 | public UnexpectedLiquibaseException(String message, Throwable cause) { | |
| 9 | 0 | super(message, cause); |
| 10 | 0 | } |
| 11 | ||
| 12 | public UnexpectedLiquibaseException(Throwable cause) { | |
| 13 | 0 | super(cause); |
| 14 | 0 | } |
| 15 | } |