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 Summary
ConstructorDescriptionCreate a newInvocationFailureException
with the supplied error message.InvocationFailureException
(String msg, Throwable cause) Create a newInvocationFailureException
with the specified error message and root cause. -
Method Summary
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getMostSpecificCause, getRootCause
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InvocationFailureException
Create a newInvocationFailureException
with the supplied error message.- Parameters:
msg
- the detail message
-
InvocationFailureException
Create a newInvocationFailureException
with the specified error message and root cause.- Parameters:
msg
- the detail messagecause
- the root cause
-