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

org.iartisan.runtime.exception.NotAllowedException Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show 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); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy