serviceinstantiationexception.java
来自「struts+hibernate3的源程序」· Java 代码 · 共 34 行
JAVA
34 行
package org.helpsoft.exception;
/**
* Exception that will be thrown if a service can not be instantiated.
*
* @author cao guangxin - www.relationinfo.com
*/
public class ServiceInstantiationException extends GenericBusinessException {
/**
* message constructor.
* @param message the error message
*/
public ServiceInstantiationException(String message) {
super(message);
}
/**
* cause constructor.
* @param cause the cause
*/
public ServiceInstantiationException(Exception cause) {
super(cause);
}
/**
* message en cause constructor.
* @param message the error message
* @param cause the cause
*/
public ServiceInstantiationException(String message, Exception cause) {
super(message, cause);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?