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