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

com.github.azbh111.utils.java.time.TimeParseException Maven / Gradle / Ivy

package com.github.azbh111.utils.java.time;

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy