profileimplementationexception.java
来自「jainslee1.0 源代码」· Java 代码 · 共 30 行
JAVA
30 行
package javax.slee.profile;/** * This exception wraps an exception thrown by profile management code implemented by * an SBB developer. It is included in the <code>throws</code> clause of business * methods included in <code>ProfileMBean</clde> classes generated by the SLEE. */public class ProfileImplementationException extends Exception { /** * Create a <code>ProfileImplementationException</code> with a detail message and cause. * @param cause the reason this exception was thrown. */ public ProfileImplementationException(Throwable cause) { super("Exception thrown by Profile Management Abstract Class implementation code"); this.cause = cause; } /** * Get the cause (if any) for this exception. * @return the cause. */ public Throwable getCause() { return cause; } private final Throwable cause;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?