servicelocatorexception.java

来自「JAVA做的J2EE下CA认证系统 基于EJB开发」· Java 代码 · 共 32 行

JAVA
32
字号
package se.anatom.ejbca.util;/** * Exception related to resource localization. * * If such an exception is thrown it means anyway that the resource * lookup dramatically failed, which means that either it is a user * error or simply the server is totally down, so there is no point * in throwing a checked exception that the user won't really be * able to handle. *  * @version $Id: ServiceLocatorException.java,v 1.1 2004/06/02 20:05:35 anatom Exp $ */public class ServiceLocatorException extends RuntimeException {    public ServiceLocatorException() {        super();    }    public ServiceLocatorException(String message) {        super(message);    }    public ServiceLocatorException(Throwable cause) {        super(cause);    }    public ServiceLocatorException(String message, Throwable cause) {        super(message, cause);    }}

⌨️ 快捷键说明

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