Package com.qfs.util
Class InterruptedTaskException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.activeviam.fwk.ActiveViamRuntimeException
com.qfs.util.InterruptedTaskException
- All Implemented Interfaces:
Serializable
@Deprecated(since="6.0.4",
forRemoval=true)
public class InterruptedTaskException
extends ActiveViamRuntimeException
Deprecated, for removal: This API element is subject to removal in a future version.
This exception is thrown whenever a thread has been interrupted during its execution.
- Author:
- ActiveViam
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDeprecated, for removal: This API element is subject to removal in a future version.Default constructor.InterruptedTaskException(String message) Deprecated, for removal: This API element is subject to removal in a future version.Constructor.InterruptedTaskException(String messageKey, Object... parameters) Deprecated, for removal: This API element is subject to removal in a future version.Constructor from a template message.InterruptedTaskException(String message, Throwable cause) Deprecated, for removal: This API element is subject to removal in a future version.Full constructor.Deprecated, for removal: This API element is subject to removal in a future version.Constructor.InterruptedTaskException(Throwable exception, String messageKey, Object... parameters) Deprecated, for removal: This API element is subject to removal in a future version.Full constructor for a template message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
InterruptedTaskException
public InterruptedTaskException()Deprecated, for removal: This API element is subject to removal in a future version.Default constructor. -
InterruptedTaskException
Deprecated, for removal: This API element is subject to removal in a future version.Constructor.- Parameters:
message- exception message
-
InterruptedTaskException
Deprecated, for removal: This API element is subject to removal in a future version.Constructor.- Parameters:
cause- underlying cause of the exception
-
InterruptedTaskException
Deprecated, for removal: This API element is subject to removal in a future version.Full constructor.- Parameters:
message- exception messagecause- underlying cause of the exception
-
InterruptedTaskException
Deprecated, for removal: This API element is subject to removal in a future version.Constructor from a template message.- Parameters:
messageKey- template keyparameters- template parameters
-
InterruptedTaskException
Deprecated, for removal: This API element is subject to removal in a future version.Full constructor for a template message.- Parameters:
exception- underlying exceptionmessageKey- template keyparameters- template parameters
-