⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 serviceinstantiationexception.java

📁 struts+hibernate3的源程序
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -