- 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
- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 构造器 描述 RuntimeOperationsException(RuntimeException e)
创建RuntimeOperationsException
封装了实际java.lang.RuntimeException
。RuntimeOperationsException(RuntimeException e, String message)
创建RuntimeOperationsException
一个包装的实际java.lang.RuntimeException
带详细消息。
-
方法摘要
所有方法 实例方法 具体的方法 变量和类型 方法 描述 Throwable
getCause()
返回抛出的实际RuntimeException
。RuntimeException
getTargetException()
返回抛出的实际RuntimeException
。
-
-
-
构造方法详细信息
-
RuntimeOperationsException
public RuntimeOperationsException(RuntimeException e)
创建RuntimeOperationsException
封装了实际java.lang.RuntimeException
。- 参数
-
e
- 包装的异常。
-
RuntimeOperationsException
public RuntimeOperationsException(RuntimeException e, String message)
创建RuntimeOperationsException
一个包装的实际java.lang.RuntimeException
带详细消息。- 参数
-
e
- 包装的异常。 -
message
- 详细信息。
-
-
方法详细信息
-
getTargetException
public RuntimeException getTargetException()
返回抛出的实际RuntimeException
。- 结果
-
包裹着
RuntimeException
。
-
getCause
public Throwable getCause()
返回抛出的实际RuntimeException
。- 重写:
-
getCause
在类Throwable
- 结果
-
包裹
RuntimeException
。
-
-