com.ibm.events.emitter
Class EmitterException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--com.ibm.events.EventsException
|
+--com.ibm.events.emitter.EmitterException
- All Implemented Interfaces:
- java.io.Serializable
- Direct Known Subclasses:
- SendFailureException, SynchronizationModeNotSupportedException, TransactionModeNotSupportedException
- public class EmitterException
- extends EventsException
Indicates that an error has occurred during emitter processing.
- Since:
- 5.1.0
- Version:
- 1.12 6/8/04
- See Also:
Emitter
, Serialized Form
Constructor Summary |
EmitterException(java.lang.String key,
java.lang.String file,
java.lang.Object[] parms)
Constructs an EmitterException that contains a message. |
EmitterException(java.lang.String key,
java.lang.String file,
java.lang.Object[] parms,
java.lang.Throwable cause)
Constructs an EmitterException that contains a message
and a causing exception. |
EmitterException(java.lang.Throwable cause)
Constructs an EmitterException that contains a causing exception. |
Methods inherited from class com.ibm.events.EventsException |
getCause, getFile, getKey, getLocalizedMessage, getLocalizedMessage, getMessage, getParms, initCause, printStackTrace, printStackTrace, printStackTrace |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
EmitterException
public EmitterException(java.lang.Throwable cause)
- Constructs an EmitterException that contains a causing exception.
- Parameters:
cause
- The exception that caused the emitter exception to be created.
EmitterException
public EmitterException(java.lang.String key,
java.lang.String file,
java.lang.Object[] parms)
- Constructs an EmitterException that contains a message.
- Parameters:
key
- The ID of the message to use as the exception message.file
- The resource bundle that contains the key.parms
- The parameters to the message.
EmitterException
public EmitterException(java.lang.String key,
java.lang.String file,
java.lang.Object[] parms,
java.lang.Throwable cause)
- Constructs an EmitterException that contains a message
and a causing exception.
- Parameters:
key
- The ID of the message to use as the exception message.file
- The resource bundle that contains the key.parms
- The parameters to the message.cause
- The exception that caused the emitter exception to be created.