com.ibm.dse.base
Class DSEHandlerNotFoundException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--com.ibm.dse.base.DSEException
                    |
                    +--com.ibm.dse.base.DSEHandlerNotFoundException

public class DSEHandlerNotFoundException
extends DSEException

The DSEHandlerNotFoundException class throws an exception on behalf of any notifier or eventManger when an attempt is made to remove a non-existent handler from the handlerList or when an attempt is made to remove a handler from a non-existent eventName List.

Those two exceptions are "harmless" and can be differentiated by the DSECHandlerNotFoundException code :

  1. - HandlerNotFound : if no handler is found in the EventName Handlers Vector.
  2. - EventNameNotFound : if no eventName is found in the handlersList Hashtable.

See Also:
Serialized Form

Fields inherited from class com.ibm.dse.base.DSEException
critical, harmless
 
Constructor Summary
DSEHandlerNotFoundException(java.lang.String aSeverity, java.lang.String aCode, java.lang.String aMessage)
          This constructor creates a DSEHandlerNotFoundException object.
 
Methods inherited from class com.ibm.dse.base.DSEException
getClassName, getCode, getMethodName, getSeverity, setClassName, setCode, setMethodName, setSeverity
 
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

DSEHandlerNotFoundException

public DSEHandlerNotFoundException(java.lang.String aSeverity,
                                   java.lang.String aCode,
                                   java.lang.String aMessage)
This constructor creates a DSEHandlerNotFoundException object.