⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 profileimplementationexception.java

📁 jainslee1.0 源代码
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -