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