Package org.springframework.jmx.access
Class InvocationFailureException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.jmx.JmxException
org.springframework.jmx.access.InvocationFailureException
- All Implemented Interfaces:
- Serializable
Thrown when an invocation on an MBean resource failed with an exception (either
 a reflection exception or an exception thrown by the target method itself).
- Since:
- 1.2
- Author:
- Juergen Hoeller
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionCreate a newInvocationFailureExceptionwith the supplied error message.InvocationFailureException(String msg, Throwable cause) Create a newInvocationFailureExceptionwith the specified error message and root cause.
- 
Method SummaryMethods inherited from class org.springframework.core.NestedRuntimeExceptioncontains, getMessage, getMostSpecificCause, getRootCauseMethods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
InvocationFailureExceptionCreate a newInvocationFailureExceptionwith the supplied error message.- Parameters:
- msg- the detail message
 
- 
InvocationFailureExceptionCreate a newInvocationFailureExceptionwith the specified error message and root cause.- Parameters:
- msg- the detail message
- cause- the root cause
 
 
-