Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
DateParseException |
|
| 1.0;1 |
1 | package liquibase.exception; | |
2 | ||
3 | import java.text.ParseException; | |
4 | ||
5 | public class DateParseException extends ParseException { | |
6 | public DateParseException(String s) { | |
7 | 0 | super(s, 0); |
8 | 0 | } |
9 | } |