Package org.apache.ignite.compute
Class ComputeTaskTimeoutException
- java.lang.Object
- 
- java.lang.Throwable
- 
- java.lang.Exception
- 
- java.lang.RuntimeException
- 
- org.apache.ignite.IgniteException
- 
- org.apache.ignite.compute.ComputeTaskTimeoutException
 
 
 
 
 
- 
- All Implemented Interfaces:
- Serializable
 
 public class ComputeTaskTimeoutException extends IgniteException This exception indicates that task execution timed out. It is thrown fromComputeTaskFuture.get()method.- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description ComputeTaskTimeoutException(String msg)Creates task timeout exception with given task execution ID and error message.ComputeTaskTimeoutException(String msg, @Nullable Throwable cause)Creates task timeout exception with given task execution ID, error message and optional nested exception.ComputeTaskTimeoutException(Throwable cause)Creates new task timeout exception given throwable as a cause and source of error message.
 - 
Method Summary- 
Methods inherited from class org.apache.ignite.IgniteExceptiongetCause, hasCause, toString
 - 
Methods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
 
- 
 
- 
- 
- 
Constructor Detail- 
ComputeTaskTimeoutExceptionpublic ComputeTaskTimeoutException(String msg) Creates task timeout exception with given task execution ID and error message.- Parameters:
- msg- Error message.
 
 - 
ComputeTaskTimeoutExceptionpublic ComputeTaskTimeoutException(Throwable cause) Creates new task timeout exception given throwable as a cause and source of error message.- Parameters:
- cause- Non-null throwable cause.
 
 - 
ComputeTaskTimeoutExceptionpublic ComputeTaskTimeoutException(String msg, @Nullable @Nullable Throwable cause) Creates task timeout exception with given task execution ID, error message and optional nested exception.- Parameters:
- msg- Error message.
- cause- Optional nested exception (can be- null).
 
 
- 
 
-