📄 genericbusinessexception.java
字号:
package org.helpsoft.exception;
/**
* Base Exception class that can be thrown by the business layer.
*
* @author cao guangxin - www.relationinfo.com
*/
public class GenericBusinessException extends Exception {
/**
* message constructor.
* @param message the error message
*/
public GenericBusinessException(String message) {
super(message);
}
/**
* cause constructor.
* @param cause the cause
*/
public GenericBusinessException(Exception cause) {
super(cause);
}
/**
* message en cause constructor.
* @param message the error message
* @param cause the cause
*/
public GenericBusinessException(String message, Exception cause) {
super(message, cause);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -