org.iartisan.runtime.exception.NotAllowedException Maven / Gradle / Ivy
The newest version!
package org.iartisan.runtime.exception;
/**
*
* 无记录异常
*
* @author King
* @since 2017/6/27
*/
public class NotAllowedException extends Exception {
public NotAllowedException() {
}
public NotAllowedException(String message) {
super(message);
}
public NotAllowedException(String message, Throwable cause) {
super(message, cause);
}
public NotAllowedException(Throwable cause) {
super(cause);
}
public NotAllowedException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}