dependencyexception.java
来自「jainslee1.0 源代码」· Java 代码 · 共 19 行
JAVA
19 行
package javax.slee.management;/** * This exception is thrown by {@link DeploymentMBean#uninstall} method if an * attempt is made to uninstall a deployable unit when another component in * another deployable unit depends on a component contained within the deployable * unit being uninstalled. */public class DependencyException extends DeploymentException { /** * Constructs a <code>DependencyException</code> with a detail message. * @param message the message. */ public DependencyException(String message) { super(message); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?