- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- javax.management.JMRuntimeException
-
- javax.management.RuntimeMBeanException
-
- All Implemented Interfaces:
-
Serializable
public class RuntimeMBeanException extends JMRuntimeException
表示代理中MBean方法抛出的运行时异常。 它“包裹”实际的java.lang.RuntimeException
异常抛出。 当MBean方法的调用引发运行时异常时,MBeanServer将构建此异常。- 从以下版本开始:
- 1.5
- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 RuntimeMBeanException(RuntimeException e)
创建一个RuntimeMBeanException
包裹实际的java.lang.RuntimeException
。RuntimeMBeanException(RuntimeException e, String message)
创建一个RuntimeMBeanException
,其中包含实际的java.lang.RuntimeException
详细消息。
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 Throwable
getCause()
返回实际抛出的RuntimeException
。RuntimeException
getTargetException()
返回实际抛出的RuntimeException
。-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
构造方法详细信息
-
RuntimeMBeanException
public RuntimeMBeanException(RuntimeException e)
创建一个RuntimeMBeanException
,包裹实际的java.lang.RuntimeException
。- 参数
-
e
- 包装的例外。
-
RuntimeMBeanException
public RuntimeMBeanException(RuntimeException e, String message)
创建一个RuntimeMBeanException
,其中包含实际的java.lang.RuntimeException
详细消息。- 参数
-
e
- 包装异常。 -
message
- 详细信息。
-
-
方法详细信息
-
getTargetException
public RuntimeException getTargetException()
返回实际抛出的RuntimeException
。- 结果
-
包裹
RuntimeException
。
-
getCause
public Throwable getCause()
返回实际抛出的RuntimeException
。- 重写:
-
getCause
在Throwable
- 结果
-
包裹
RuntimeException
。
-
-