javax.slee.management
Class ManagementException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--javax.slee.management.ManagementException
All Implemented Interfaces:
java.io.Serializable

public class ManagementException
extends java.lang.Exception

This exception is thrown by methods defined in the SLEE's management API if a management operation could not be successfully completed due to an unexpected system-level failure.

See Also:
Serialized Form

Constructor Summary
ManagementException(java.lang.String message)
          Create a ManagementException with a detail message.
ManagementException(java.lang.String message, java.lang.Throwable cause)
          Create a ManagementException with a detail message and cause.
 
Method Summary
 java.lang.Throwable getCause()
          Get the cause (if any) for this exception.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ManagementException

public ManagementException(java.lang.String message)
Create a ManagementException with a detail message.
Parameters:
message - the detail message.

ManagementException

public ManagementException(java.lang.String message,
                           java.lang.Throwable cause)
Create a ManagementException with a detail message and cause.
Parameters:
message - the detail message.
cause - the reason this exception was thrown.
Method Detail

getCause

public java.lang.Throwable getCause()
Get the cause (if any) for this exception.
Returns:
the cause.