
liquibase.exception.DateParseException Maven / Gradle / Ivy
The newest version!
package liquibase.exception;
import java.text.ParseException;
public class DateParseException extends ParseException {
private static final long serialVersionUID = 5140152882720200275L;
public DateParseException(String message) {
super(message, 0);
}
}