Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
LiquibaseException |
|
| 1.0;1 |
1 | package liquibase.exception; | |
2 | ||
3 | /** | |
4 | * Base class for all Liquibase exceptions. | |
5 | */ | |
6 | public class LiquibaseException extends Exception { | |
7 | ||
8 | private static final long serialVersionUID = 1L; | |
9 | ||
10 | 0 | public LiquibaseException() { |
11 | 0 | } |
12 | ||
13 | public LiquibaseException(String message) { | |
14 | 9 | super(message); |
15 | 9 | } |
16 | ||
17 | public LiquibaseException(String message, Throwable cause) { | |
18 | 1 | super(message, cause); |
19 | 1 | } |
20 | ||
21 | public LiquibaseException(Throwable cause) { | |
22 | 0 | super(cause); |
23 | 0 | } |
24 | } |