java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
javax.management.JMRuntimeException
javax.management.RuntimeErrorException
- All Implemented Interfaces:
- Serializable
public class RuntimeErrorException extends JMRuntimeException
When a 
java.lang.Error occurs in the agent it should be caught and
 re-thrown as a RuntimeErrorException.- Since:
- 1.5
- See Also:
- Serialized Form
- 
Constructor SummaryConstructors Constructor Description RuntimeErrorException(Error e)Default constructor.RuntimeErrorException(Error e, String message)Constructor that allows a specific error message to be specified.
- 
Method SummaryMethods declared in class java.lang.ThrowableaddSuppressed, fillInStackTrace, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
RuntimeErrorExceptionDefault constructor.- Parameters:
- e- the wrapped error.
 
- 
RuntimeErrorExceptionConstructor that allows a specific error message to be specified.- Parameters:
- e- the wrapped error.
- message- the detail message.
 
 
- 
- 
Method Details