📄 servicelocatorexception.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -