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

cn.dyaoming.errors.AppRunTimeOutException Maven / Gradle / Ivy

package cn.dyaoming.errors;


/**
 * 

* 系统超时异常 *

* * @author DYAOMING * @version 0.0.3 * @since 2020-01-29 */ public class AppRunTimeOutException extends BaseException { private static final long serialVersionUID = 7899356287467829429L; /** *

* 构造函数 *

* * @param message String类型 异常信息 */ public AppRunTimeOutException(String message) { super(message); } /** *

* 构造函数 *

* * @param code String类型 异常标识 * @param message String类型 异常信息 */ public AppRunTimeOutException(String code, String message) { super(message); setCode(code); } /** *

* 构造函数 *

* * @param message String类型 异常信息 * @param cause 异常 */ public AppRunTimeOutException(String message, Throwable cause) { super(message, cause); } /** *

* 构造函数 *

* * @param code String类型 异常标识 * @param message String类型 异常信息 * @param cause Throwable类型 异常 */ public AppRunTimeOutException(String code, String message, Throwable cause) { super(message, cause); setCode(code); } /** *

* 构造函数 *

* * @param cause String类型 异常 */ public AppRunTimeOutException(Throwable cause) { super(cause); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy