Package org.apache.ignite.lang
Class IgniteFutureCancelledException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.ignite.IgniteException
org.apache.ignite.lang.IgniteFutureCancelledException
- All Implemented Interfaces:
Serializable
Future computation cannot be retrieved because it was cancelled.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates new exception with given error message.IgniteFutureCancelledException(String msg, Throwable cause) Creates a new exception with given error message and optional nested cause exception.Creates new exception with given throwable as a nested cause and source of error message. -
Method Summary
Methods inherited from class org.apache.ignite.IgniteException
getCause, hasCause, toStringMethods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Constructor Details
-
IgniteFutureCancelledException
Creates new exception with given error message.- Parameters:
msg- Error message.
-
IgniteFutureCancelledException
Creates new exception with given throwable as a nested cause and source of error message.- Parameters:
cause- Non-null throwable cause.
-
IgniteFutureCancelledException
Creates a new exception with given error message and optional nested cause exception.- Parameters:
msg- Error message.cause- Optional nested exception (can benull).
-