unknownserviceexception.java

来自「struts+hibernate3的源程序」· Java 代码 · 共 34 行

JAVA
34
字号
package org.helpsoft.exception;


/**
 * Exception that will be thrown if the service is unknown.
 * @author cao guangxin - www.relationinfo.com
 */
public class UnknownServiceException extends GenericBusinessException {
    /**
     * message constructor.
     * @param message the error message
     */
    public UnknownServiceException(String message) {
        super(message);
    }

    /**
     * cause constructor.
     * @param cause the cause
     */
    public UnknownServiceException(Exception cause) {
        super(cause);
    }

    /**
     * message en cause constructor.
     * @param message the error message
     * @param cause   the cause
     */
    public UnknownServiceException(String message, Exception cause) {
        super(message, cause);
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?