public class

InvocationFailureException

extends JmxException
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

Class Overview

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).

Summary

Public Constructors
InvocationFailureException(String msg)
Create a new InvocationFailureException with the supplied error message.
InvocationFailureException(String msg, Throwable cause)
Create a new InvocationFailureException with the specified error message and root cause.
[Expand]
Inherited Methods
From class org.springframework.core.NestedRuntimeException
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public InvocationFailureException (String msg)

Create a new InvocationFailureException with the supplied error message.

Parameters
msg the detail message

public InvocationFailureException (String msg, Throwable cause)

Create a new InvocationFailureException with the specified error message and root cause.

Parameters
msg the detail message
cause the root cause