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

com.github.azbh111.utils.java.datetime.DateTimeParseException Maven / Gradle / Ivy

The newest version!
package com.github.azbh111.utils.java.datetime;

/**
 *
 * @author pyz
 * @date 2019/3/29 10:10 PM
 */
public class DateTimeParseException extends RuntimeException {
    public DateTimeParseException() {
    }

    public DateTimeParseException(String message) {
        super(message);
    }

    public DateTimeParseException(String message, Throwable cause) {
        super(message, cause);
    }

    public DateTimeParseException(Throwable cause) {
        super(cause);
    }

    public DateTimeParseException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy