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:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InterruptedTaskException()Deprecated, 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.InterruptedTaskException(Throwable cause)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 Detail
-
InterruptedTaskException
public InterruptedTaskException()
Deprecated, for removal: This API element is subject to removal in a future version.Default constructor.
-
InterruptedTaskException
public InterruptedTaskException(String message)
Deprecated, for removal: This API element is subject to removal in a future version.Constructor.- Parameters:
message- exception message
-
InterruptedTaskException
public InterruptedTaskException(Throwable cause)
Deprecated, for removal: This API element is subject to removal in a future version.Constructor.- Parameters:
cause- underlying cause of the exception
-
InterruptedTaskException
public InterruptedTaskException(String message, Throwable cause)
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
public InterruptedTaskException(String messageKey, Object... parameters)
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
public 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.- Parameters:
exception- underlying exceptionmessageKey- template keyparameters- template parameters
-
-