All Downloads are FREE. Search and download functionalities are using the official Maven repository.

liquibase.exception.DateParseException Maven / Gradle / Ivy

There is a newer version: 4.29.1
Show newest version
package liquibase.exception;

import java.text.ParseException;

public class DateParseException extends ParseException {
    private static final long serialVersionUID = 5140152882720200275L;
    
    public DateParseException(String s) {
        super(s, 0);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy