| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| CustomPrecondition | 
  | 
  | 1.0;1 | 
| 1 |  package liquibase.precondition; | |
| 2 | ||
| 3 |  import liquibase.database.Database; | |
| 4 |  import liquibase.exception.CustomPreconditionErrorException; | |
| 5 |  import liquibase.exception.CustomPreconditionFailedException; | |
| 6 | ||
| 7 | public interface CustomPrecondition {  | |
| 8 | void check(Database database) throws CustomPreconditionFailedException, CustomPreconditionErrorException;  | |
| 9 | }  |