facilityexception.java
来自「jainslee1.0 源代码」· Java 代码 · 共 29 行
JAVA
29 行
package javax.slee.facilities;import javax.slee.SLEEException;/** * This exception is thrown by facilities when a system-level failure is encountered * while handling an SBB request. */public class FacilityException extends SLEEException { /** * Create a <code>FacilityException</code> with a detail message. * @param message the detail message. */ public FacilityException(String message) { super(message); } /** * Create a <code>FacilityException</code> with a detail message and cause. * @param message the detail message. * @param cause the reason this exception was thrown. */ public FacilityException(String message, Throwable cause) { super(message, cause); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?