所有类
javax.management
类 RuntimeOperationsException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
javax.management.JMRuntimeException
javax.management.RuntimeOperationsException
-
所有已实现的接口:
-
Serializable
-
public class RuntimeOperationsException
- extends JMRuntimeException
表示在 MBean 上执行操作时代理中抛出的运行时异常。它包装抛出的实际 java.lang.RuntimeException
。
-
从以下版本开始:
-
1.5
-
另请参见:
-
序列化表格
RuntimeOperationsException
public RuntimeOperationsException(RuntimeException e)
-
创建包装实际
java.lang.RuntimeException
的 RuntimeOperationsException
。
-
参数:
-
e
- 包装的异常。
RuntimeOperationsException
public RuntimeOperationsException(RuntimeException e,
String message)
-
创建包装带有详细信息的实际
java.lang.RuntimeException
的 RuntimeOperationsException
。
-
参数:
-
e
- 包装的异常。
-
message
- 详细消息。
getTargetException
public RuntimeException getTargetException()
-
返回抛出的实际
RuntimeException
。
-
-
返回:
-
包装的
RuntimeException
。
getCause
public Throwable getCause()
-
返回抛出的实际
RuntimeException
。
-
-
覆盖:
-
类
Throwable
中的 getCause
-
-
返回:
-
包装的
RuntimeException
。
所有类