com.github.azbh111.utils.java.datetime.DateTimeParseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utils-java Show documentation
Show all versions of utils-java Show documentation
com.github.azbh111:utils-java
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);
}
}