Package org.apache.ignite.lang
Class IgniteFutureTimeoutException
- java.lang.Object
- 
- java.lang.Throwable
- 
- java.lang.Exception
- 
- java.lang.RuntimeException
- 
- org.apache.ignite.IgniteException
- 
- org.apache.ignite.lang.IgniteFutureTimeoutException
 
 
 
 
 
- 
- All Implemented Interfaces:
- Serializable
 
 public class IgniteFutureTimeoutException extends IgniteException Future computation completion is timed out.- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description IgniteFutureTimeoutException(String msg)Creates new exception with given error message.IgniteFutureTimeoutException(String msg, @Nullable Throwable cause)Creates a new exception with given error message and optional nested cause exception.IgniteFutureTimeoutException(Throwable cause)Creates new exception with given throwable as a nested 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- 
IgniteFutureTimeoutExceptionpublic IgniteFutureTimeoutException(String msg) Creates new exception with given error message.- Parameters:
- msg- Error message.
 
 - 
IgniteFutureTimeoutExceptionpublic IgniteFutureTimeoutException(Throwable cause) Creates new exception with given throwable as a nested cause and source of error message.- Parameters:
- cause- Non-null throwable cause.
 
 
- 
 
-