com.github.azbh111.utils.java.exception.UnexpectedException 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.exception;
/**
*
* @author pyz
* @date 2019/10/31 10:03 上午
*/
public class UnexpectedException extends RuntimeException {
public UnexpectedException() {
}
public UnexpectedException(String message) {
super(message);
}
public UnexpectedException(String message, Throwable cause) {
super(message, cause);
}
public UnexpectedException(Throwable cause) {
super(cause);
}
public UnexpectedException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}