Package wt.queue
Class QueueException
java.lang.Object
java.lang.Throwable
java.lang.Exception
wt.util.WTException
wt.queue.QueueException
- All Implemented Interfaces:
Serializable,LocalizableMessage,Message
This class represents exceptions that can be thrown in the process of
storing, retrieving and executing queue entries. This class, however,
does not represent exceptions resulting from the execution of the actual
request.
Supported API: true
Extendable: false
Supported API: true
Extendable: false
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionNo argument constructor.Constructs a queue execption with an embedded exeption.QueueException(Exception e, String msg) Constructs a queue exception with an embedded exception and a non-localized message.QueueException(Exception e, String rb, String key, Object[] params) Constructs a queue exception with an embedded message and a localized message.QueueException(String message) Constructs a queue exception with a non-localized message.QueueException(String rb, String key, Object[] params, Object[] additionalMessages) Constructs a queue exception with an embedded message and a localized message. -
Method Summary
Methods inherited from class wt.util.WTException
getAdditionalMessageArray, getAdditionalMessages, getAdditionalMessages, getLocalizedMessage, getLocalizedMessage, getLocalizedMessage, getNestedExceptionString, getNestedExceptionString, getNestedThrowable, getStandardMessage, getStandardMessage, getWTMessage, printStackTrace, printStackTrace, printStackTrace, toString, toStringMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getMessage, getStackTrace, getSuppressed, initCause, setStackTrace
-
Constructor Details
-
QueueException
public QueueException()No argument constructor.
Supported API: true -
QueueException
Constructs a queue exception with a non-localized message.
Supported API: true- Parameters:
message-
-
QueueException
Constructs a queue execption with an embedded exeption.
Supported API: true- Parameters:
e-
-
QueueException
Constructs a queue exception with an embedded exception and a non-localized message.
Supported API: true- Parameters:
e-msg-
-
QueueException
Constructs a queue exception with an embedded message and a localized message. The exception can be null.
Supported API: true- Parameters:
e-rb-key-params-
-
QueueException
Constructs a queue exception with an embedded message and a localized message. The exception can be null.
Supported API: true- Parameters:
rb-key-params-additionalMessages-
-