cn.acyou.leo.framework.exception.AssertException Maven / Gradle / Ivy
package cn.acyou.leo.framework.exception;
/**
* @author youfang
* @version [1.0.0, 2020-7-11 下午 04:12]
**/
public class AssertException extends RuntimeException {
/**
* Constructs a new runtime exception with {@code null} as its
* detail message. The cause is not initialized, and may subsequently be
* initialized by a call to {@link #initCause}.
*/
public AssertException() {
}
/**
* Constructs a new runtime exception with the specified detail message.
* The cause is not initialized, and may subsequently be initialized by a
* call to {@link #initCause}.
*
* @param message the detail message. The detail message is saved for
* later retrieval by the {@link #getMessage()} method.
*/
public AssertException(String message) {
super(message);
}
}