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