servicelocatorexception.java
来自「一个免费的CA,基于EJB平台的,老师叫我们测试,现把之共享出来让大家参考」· Java 代码 · 共 32 行
JAVA
32 行
package org.ejbca.core.ejb;/** * 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 2006/01/17 20:30:04 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 + -
显示快捷键?