java.nio.channels
Class ClosedByInterruptException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
java.nio.channels.ClosedChannelException
java.nio.channels.AsynchronousCloseException
java.nio.channels.ClosedByInterruptException
- All Implemented Interfaces:
- Serializable
public class ClosedByInterruptException
- extends AsynchronousCloseException
Thrown when a thread is interrupted in a blocking IO operation.
When the thread is interrupted by a call to interrupt()
it will close the channel, set the interrupt status of the thread to true,
and throw a ClosedByInterruptException.
- See Also:
- Serialized Form
| Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
ClosedByInterruptException
public ClosedByInterruptException()
- Default constructor.
Please submit a feedback, bug or feature