Clover Coverage Report - Liquibase Core 2.0.3-SNAPSHOT
Coverage timestamp: Sat Aug 6 2011 11:33:15 EDT
../../img/srcFileCovDistChart0.png 69% of files have more coverage
3   24   4   0.75
0   15   1.33   4
4     1  
1    
 
  RollbackImpossibleException       Line # 6 3 0% 4 7 0% 0.0
 
No Tests
 
1    package liquibase.exception;
2   
3    /**
4    * Thrown if a change is encountered that cannot be rolled back.
5    */
 
6    public class RollbackImpossibleException extends LiquibaseException {
7   
8    private static final long serialVersionUID = 1L;
9   
 
10  0 toggle public RollbackImpossibleException() {
11    }
12   
 
13  0 toggle public RollbackImpossibleException(String message) {
14  0 super(message);
15    }
16   
 
17  0 toggle public RollbackImpossibleException(String message, Throwable cause) {
18  0 super(message, cause);
19    }
20   
 
21  0 toggle public RollbackImpossibleException(Throwable cause) {
22  0 super(cause);
23    }
24    }