Clover Coverage Report - Liquibase Core 2.0.3-SNAPSHOT
Coverage timestamp: Sat Aug 6 2011 11:33:15 EDT
../../img/srcFileCovDistChart4.png 40% of files have more coverage
3   16   3   1
0   12   1   3
3     1  
1    
 
  LockException       Line # 3 3 0% 3 4 33.3% 0.33333334
 
  (1)
 
1    package liquibase.exception;
2   
 
3    public class LockException extends LiquibaseException {
4   
 
5  1 toggle public LockException(String message) {
6  1 super(message);
7    }
8   
 
9  0 toggle public LockException(Throwable cause) {
10  0 super(cause);
11    }
12   
 
13  0 toggle public LockException(String message, Throwable cause) {
14  0 super(message, cause);
15    }
16    }