Package org.apache.ignite
Class IgniteInterruptedException
- java.lang.Object
- 
- java.lang.Throwable
- 
- java.lang.Exception
- 
- java.lang.RuntimeException
- 
- org.apache.ignite.IgniteException
- 
- org.apache.ignite.IgniteInterruptedException
 
 
 
 
 
- 
- All Implemented Interfaces:
- Serializable
 
 public class IgniteInterruptedException extends IgniteException This exception is used to wrap standardInterruptedExceptionintoIgniteException.- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description IgniteInterruptedException(InterruptedException cause)Creates new exception with given throwable as a nested cause and source of error message.IgniteInterruptedException(String msg)Creates a new exception with given error message and optional nested cause exception.IgniteInterruptedException(String msg, InterruptedException cause)Creates a new exception with given error message and optional nested cause exception.
 - 
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- 
IgniteInterruptedExceptionpublic IgniteInterruptedException(InterruptedException cause) Creates new exception with given throwable as a nested cause and source of error message.- Parameters:
- cause- Non-null throwable cause.
 
 - 
IgniteInterruptedExceptionpublic IgniteInterruptedException(String msg) Creates a new exception with given error message and optional nested cause exception.- Parameters:
- msg- Error message.
 
 - 
IgniteInterruptedExceptionpublic IgniteInterruptedException(String msg, InterruptedException cause) Creates a new exception with given error message and optional nested cause exception.- Parameters:
- msg- Error message.
- cause- Optional nested exception (can be- null).
 
 
- 
 
-