| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| LockException | 
 | 
 | 1.0;1 | 
| 1 |  package liquibase.exception; | |
| 2 | ||
| 3 | public class LockException extends LiquibaseException { | |
| 4 | ||
| 5 |      public LockException(String message) { | |
| 6 | 1 |          super(message); | 
| 7 | 1 | } | 
| 8 | ||
| 9 |      public LockException(Throwable cause) { | |
| 10 | 0 |          super(cause); | 
| 11 | 0 |      } | 
| 12 | ||
| 13 |      public LockException(String message, Throwable cause) { | |
| 14 | 0 |          super(message, cause); | 
| 15 | 0 |      } | 
| 16 | } |