Coverage Report - liquibase.exception.UnexpectedLiquibaseException
 
Classes in this File Line Coverage Branch Coverage Complexity
UnexpectedLiquibaseException
0%
0/6
N/A
1
 
 1  
 package liquibase.exception;
 2  
 
 3  
 public class UnexpectedLiquibaseException extends RuntimeException {
 4  
     public UnexpectedLiquibaseException(String message) {
 5  0
         super(message);
 6  0
     }
 7  
 
 8  
     public UnexpectedLiquibaseException(String message, Throwable cause) {
 9  0
         super(message, cause);
 10  0
     }
 11  
 
 12  
     public UnexpectedLiquibaseException(Throwable cause) {
 13  0
         super(cause);
 14  0
     }
 15  
 }