Coverage Report - liquibase.exception.DuplicateChangeSetException
 
Classes in this File Line Coverage Branch Coverage Complexity
DuplicateChangeSetException
100%
2/2
N/A
1
 
 1  
 package liquibase.exception;
 2  
 
 3  
 public class DuplicateChangeSetException extends LiquibaseException {
 4  
 
 5  
     private static final long serialVersionUID = 1L;
 6  
 
 7  
     public DuplicateChangeSetException(String message) {
 8  1
         super(message);
 9  1
     }
 10  
 }