public class

JmxException

extends NestedRuntimeException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.lang.RuntimeException
         ↳ org.springframework.core.NestedRuntimeException
           ↳ org.springframework.jmx.JmxException
Known Direct Subclasses
Known Indirect Subclasses

Class Overview

General base exception to be thrown on JMX errors. Unchecked since JMX failures are usually fatal.

Summary

Public Constructors
JmxException(String msg)
Constructor for JmxException.
JmxException(String msg, Throwable cause)
Constructor for JmxException.
[Expand]
Inherited Methods
From class org.springframework.core.NestedRuntimeException
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public JmxException (String msg)

Constructor for JmxException.

Parameters
msg the detail message

public JmxException (String msg, Throwable cause)

Constructor for JmxException.

Parameters
msg the detail message
cause the root cause (usually a raw JMX API exception)