The Spring Framework

org.springframework.jmx.export.notification
Class UnableToSendNotificationException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.springframework.core.NestedRuntimeException
                  extended by org.springframework.jmx.JmxException
                      extended by org.springframework.jmx.export.notification.UnableToSendNotificationException
All Implemented Interfaces:
Serializable

public class UnableToSendNotificationException
extends JmxException

Thrown when a JMX Notification is unable to be sent.

The root cause of just why a particular notification could not be sent will typically be available via the NestedRuntimeException.getCause() property.

Since:
2.0
Author:
Rob Harrop
See Also:
NotificationPublisher, Serialized Form

Constructor Summary
UnableToSendNotificationException(String msg)
          Create a new instance of the UnableToSendNotificationException class with the specified error message.
UnableToSendNotificationException(String msg, Throwable cause)
          Create a new instance of the UnableToSendNotificationException with the specified error message and root cause.
 
Method Summary
 
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getCause, getMessage, getMostSpecificCause, getRootCause, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getStackTrace, initCause, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

UnableToSendNotificationException

public UnableToSendNotificationException(String msg)
Create a new instance of the UnableToSendNotificationException class with the specified error message.

Parameters:
msg - the detail message

UnableToSendNotificationException

public UnableToSendNotificationException(String msg,
                                         Throwable cause)
Create a new instance of the UnableToSendNotificationException with the specified error message and root cause.

Parameters:
msg - the detail message
cause - the root cause

The Spring Framework

Copyright © 2002-2007 The Spring Framework.