javax.management
Class RuntimeMBeanException

java.lang.Object sample code for java.lang.Object definition code for java.lang.Object 
  extended by java.lang.Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable 
      extended by java.lang.Exception sample code for java.lang.Exception definition code for java.lang.Exception 
          extended by java.lang.RuntimeException sample code for java.lang.RuntimeException definition code for java.lang.RuntimeException 
              extended by javax.management.JMRuntimeException sample code for javax.management.JMRuntimeException definition code for javax.management.JMRuntimeException 
                  extended by javax.management.RuntimeMBeanException
All Implemented Interfaces:
Serializable sample code for java.io.Serializable definition code for java.io.Serializable

public class RuntimeMBeanException
extends JMRuntimeException sample code for javax.management.JMRuntimeException definition code for javax.management.JMRuntimeException

Represents runtime exceptions thrown by MBean methods in the agent. It "wraps" the actual java.lang.RuntimeException exception thrown. This exception will be built by the MBeanServer when a call to an MBean method throws a runtime exception.

Since:
1.5
See Also:
Serialized Form

Constructor Summary
RuntimeMBeanException sample code for javax.management.RuntimeMBeanException.RuntimeMBeanException(java.lang.RuntimeException) definition code for javax.management.RuntimeMBeanException.RuntimeMBeanException(java.lang.RuntimeException) (RuntimeException sample code for java.lang.RuntimeException definition code for java.lang.RuntimeException  e)
          Creates a RuntimeMBeanException that wraps the actual java.lang.RuntimeException.
RuntimeMBeanException sample code for javax.management.RuntimeMBeanException.RuntimeMBeanException(java.lang.RuntimeException, java.lang.String) definition code for javax.management.RuntimeMBeanException.RuntimeMBeanException(java.lang.RuntimeException, java.lang.String) (RuntimeException sample code for java.lang.RuntimeException definition code for java.lang.RuntimeException  e, String sample code for java.lang.String definition code for java.lang.String  message)
          Creates a RuntimeMBeanException that wraps the actual java.lang.RuntimeException with a detailed message.
 
Method Summary
 Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable getCause sample code for javax.management.RuntimeMBeanException.getCause() definition code for javax.management.RuntimeMBeanException.getCause() ()
          Returns the actual RuntimeException sample code for java.lang.RuntimeException definition code for java.lang.RuntimeException thrown.
 RuntimeException sample code for java.lang.RuntimeException definition code for java.lang.RuntimeException getTargetException sample code for javax.management.RuntimeMBeanException.getTargetException() definition code for javax.management.RuntimeMBeanException.getTargetException() ()
          Returns the actual RuntimeException sample code for java.lang.RuntimeException definition code for java.lang.RuntimeException thrown.
 
Methods inherited from class java.lang.Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable
fillInStackTrace sample code for java.lang.Throwable.fillInStackTrace() definition code for java.lang.Throwable.fillInStackTrace() , getLocalizedMessage sample code for java.lang.Throwable.getLocalizedMessage() definition code for java.lang.Throwable.getLocalizedMessage() , getMessage sample code for java.lang.Throwable.getMessage() definition code for java.lang.Throwable.getMessage() , getStackTrace sample code for java.lang.Throwable.getStackTrace() definition code for java.lang.Throwable.getStackTrace() , initCause sample code for java.lang.Throwable.initCause(java.lang.Throwable) definition code for java.lang.Throwable.initCause(java.lang.Throwable) , printStackTrace sample code for java.lang.Throwable.printStackTrace() definition code for java.lang.Throwable.printStackTrace() , printStackTrace sample code for java.lang.Throwable.printStackTrace(java.io.PrintStream) definition code for java.lang.Throwable.printStackTrace(java.io.PrintStream) , printStackTrace sample code for java.lang.Throwable.printStackTrace(java.io.PrintWriter) definition code for java.lang.Throwable.printStackTrace(java.io.PrintWriter) , setStackTrace sample code for java.lang.Throwable.setStackTrace(java.lang.StackTraceElement[]) definition code for java.lang.Throwable.setStackTrace(java.lang.StackTraceElement[]) , toString sample code for java.lang.Throwable.toString() definition code for java.lang.Throwable.toString()
 
Methods inherited from class java.lang.Object sample code for java.lang.Object definition code for java.lang.Object
clone sample code for java.lang.Object.clone() definition code for java.lang.Object.clone() , equals sample code for java.lang.Object.equals(java.lang.Object) definition code for java.lang.Object.equals(java.lang.Object) , finalize sample code for java.lang.Object.finalize() definition code for java.lang.Object.finalize() , getClass sample code for java.lang.Object.getClass() definition code for java.lang.Object.getClass() , hashCode sample code for java.lang.Object.hashCode() definition code for java.lang.Object.hashCode() , notify sample code for java.lang.Object.notify() definition code for java.lang.Object.notify() , notifyAll sample code for java.lang.Object.notifyAll() definition code for java.lang.Object.notifyAll() , wait sample code for java.lang.Object.wait() definition code for java.lang.Object.wait() , wait sample code for java.lang.Object.wait(long) definition code for java.lang.Object.wait(long) , wait sample code for java.lang.Object.wait(long, int) definition code for java.lang.Object.wait(long, int)
 

Constructor Detail

RuntimeMBeanException sample code for javax.management.RuntimeMBeanException(java.lang.RuntimeException) definition code for javax.management.RuntimeMBeanException(java.lang.RuntimeException)

public RuntimeMBeanException(RuntimeException sample code for java.lang.RuntimeException definition code for java.lang.RuntimeException  e)
Creates a RuntimeMBeanException that wraps the actual java.lang.RuntimeException.

Parameters:
e - the wrapped exception.

RuntimeMBeanException sample code for javax.management.RuntimeMBeanException(java.lang.RuntimeException, java.lang.String) definition code for javax.management.RuntimeMBeanException(java.lang.RuntimeException, java.lang.String)

public RuntimeMBeanException(RuntimeException sample code for java.lang.RuntimeException definition code for java.lang.RuntimeException  e,
                             String sample code for java.lang.String definition code for java.lang.String  message)
Creates a RuntimeMBeanException that wraps the actual java.lang.RuntimeException with a detailed message.

Parameters:
e - the wrapped exception.
message - the detail message.
Method Detail

getTargetException sample code for javax.management.RuntimeMBeanException.getTargetException() definition code for javax.management.RuntimeMBeanException.getTargetException()

public RuntimeException sample code for java.lang.RuntimeException definition code for java.lang.RuntimeException  getTargetException()
Returns the actual RuntimeException sample code for java.lang.RuntimeException definition code for java.lang.RuntimeException thrown.

Returns:
the wrapped RuntimeException sample code for java.lang.RuntimeException definition code for java.lang.RuntimeException .

getCause sample code for javax.management.RuntimeMBeanException.getCause() definition code for javax.management.RuntimeMBeanException.getCause()

public Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable  getCause()
Returns the actual RuntimeException sample code for java.lang.RuntimeException definition code for java.lang.RuntimeException thrown.

Overrides:
getCause sample code for java.lang.Throwable.getCause() definition code for java.lang.Throwable.getCause() in class Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable
Returns:
the wrapped RuntimeException sample code for java.lang.RuntimeException definition code for java.lang.RuntimeException .