org.gridgain.grid
Class GridInterruptedException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.gridgain.grid.GridException
org.gridgain.grid.GridInterruptedException
- All Implemented Interfaces:
- Serializable
public class GridInterruptedException
- extends GridException
This exception is used to wrap standard InterruptedException into GridException.
- See Also:
- Serialized Form
-

GridInterruptedException
public GridInterruptedException(InterruptedException cause)
- Creates new exception with given throwable as a nested cause and
source of error message.
- Parameters:
cause - Non-null throwable cause.
GridInterruptedException
public GridInterruptedException(String msg)
- Creates a new exception with given error message and optional nested cause exception.
- Parameters:
msg - Error message.
GridInterruptedException
public GridInterruptedException(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).