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