| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| CommandLineParsingException | 
 | 
 | 1.0;1 | 
| 1 |  package liquibase.exception; | |
| 2 | ||
| 3 | public class CommandLineParsingException extends Exception { | |
| 4 | ||
| 5 | private static final long serialVersionUID = 1L; | |
| 6 | ||
| 7 | 0 |      public CommandLineParsingException() { | 
| 8 | 0 |      } | 
| 9 | ||
| 10 |      public CommandLineParsingException(String message) { | |
| 11 | 4 |          super(message); | 
| 12 | 4 | } | 
| 13 | ||
| 14 |      public CommandLineParsingException(String message, Throwable cause) { | |
| 15 | 0 |          super(message, cause); | 
| 16 | 0 |      } | 
| 17 | ||
| 18 |      public CommandLineParsingException(Throwable cause) { | |
| 19 | 0 |          super(cause); | 
| 20 | 0 |      } | 
| 21 | } |