Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
ChangeNotFoundException |
|
| 1.0;1 |
1 | package liquibase.exception; | |
2 | ||
3 | import liquibase.database.Database; | |
4 | ||
5 | public class ChangeNotFoundException extends LiquibaseException { | |
6 | public ChangeNotFoundException(String name, Database database) { | |
7 | 0 | super("Change '" + name + "' not found or supported for " + database); |
8 | 0 | } |
9 | } |