Package org.apache.ignite.internal
Class IgniteInterruptedCheckedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.ignite.IgniteCheckedException
-
- org.apache.ignite.internal.IgniteInterruptedCheckedException
-
- All Implemented Interfaces:
Serializable
public class IgniteInterruptedCheckedException extends IgniteCheckedException
This exception is used to wrap standardInterruptedException
intoIgniteCheckedException
.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description IgniteInterruptedCheckedException(InterruptedException cause)
Creates new exception with given throwable as a nested cause and source of error message.IgniteInterruptedCheckedException(String msg)
Creates a new exception with given error message and optional nested cause exception.IgniteInterruptedCheckedException(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.IgniteCheckedException
getCause, hasCause, toString
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
Constructor Detail
-
IgniteInterruptedCheckedException
public IgniteInterruptedCheckedException(InterruptedException cause)
Creates new exception with given throwable as a nested cause and source of error message.- Parameters:
cause
- Non-null throwable cause.
-
IgniteInterruptedCheckedException
public IgniteInterruptedCheckedException(String msg)
Creates a new exception with given error message and optional nested cause exception.- Parameters:
msg
- Error message.
-
IgniteInterruptedCheckedException
public IgniteInterruptedCheckedException(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 benull
).
-
-