1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- package cn.com.qmth.examcloud.commons.exception;
- /**
- * 通用异常类<br>
- *
- * @author WANG
- */
- public class ExamCloudRuntimeException extends RuntimeException {
- /**
- *
- */
- private static final long serialVersionUID = 7992796744711512927L;
- /**
- * 构造函数
- */
- public ExamCloudRuntimeException() {
- super();
- }
- /**
- * 构造函数
- */
- public ExamCloudRuntimeException(String message) {
- super(message);
- }
- /**
- * 构造函数
- */
- public ExamCloudRuntimeException(String message, Throwable cause) {
- super(message, cause);
- }
- /**
- * 构造函数
- */
- public ExamCloudRuntimeException(Throwable cause) {
- super(cause);
- }
- /**
- * 构造函数
- */
- protected ExamCloudRuntimeException(String message, Throwable cause, boolean enableSuppression,
- boolean writableStackTrace) {
- super(message, cause, enableSuppression, writableStackTrace);
- }
- }
|