Package wt.queue
Class ResetReadyException
java.lang.Object
java.lang.Throwable
java.lang.Exception
wt.util.WTException
wt.queue.ResetReadyException
- All Implemented Interfaces:
Serializable,LocalizableMessage,Message
This class represents a special exeption which can be thrown when an executing
entry detects a pending stop request, but wants its status reset to ready so
that it can be re-executed once the queue is re-started.
Note: If this exception is thrown by a process queue entry it is the responsibility
of the entry to roll back any open transactions prior to throwing the exception.
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.ResetReadyException(Exception e, String msg) Constructs a queue exception with an embedded exception and a non-localized message.ResetReadyException(Exception e, String rb, String key, Object[] params) Constructs a queue exeption with amn embedded message and a localized message.ResetReadyException(String message) Constructs a queue exception with a non-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
-
ResetReadyException
public ResetReadyException()No argument constructor.
Supported API: true -
ResetReadyException
Constructs a queue exception with a non-localized message.
Supported API: true- Parameters:
message-
-
ResetReadyException
Constructs a queue execption with an embedded exeption.
Supported API: true- Parameters:
e-
-
ResetReadyException
Constructs a queue exception with an embedded exception and a non-localized message.
Supported API: true- Parameters:
e-msg-
-
ResetReadyException
Constructs a queue exeption with amn embedded message and a localized message. The exception can be null.
Supported API: true- Parameters:
e-rb-key-params-
-