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

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

There is a newer version: 0.0.5
Show newest version
package cn.dyaoming.errors;

import java.io.PrintStream;
import java.io.PrintWriter;

/**
 * 

通用工具运行异常类。

* * @author DYAOMING * @version V1.0 * @since 2019.3.13 */ public class AppUtilException extends RuntimeException { private static final long serialVersionUID = 1L; /** *

构造函数

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

构造函数

* * @param cause 异常 */ public AppUtilException(Throwable cause) { super(cause); } /** *

构造函数

* * @param message 异常信息 * @param cause 异常 */ public AppUtilException(String message, Throwable cause) { super(message, cause); } @Override public void printStackTrace() { super.printStackTrace(); } @Override public void printStackTrace(PrintStream s) { super.printStackTrace(s); } @Override public void printStackTrace(PrintWriter s) { super.printStackTrace(s); } @Override public String getMessage() { return super.getMessage(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy