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