You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
891 B
54 lines
891 B
/*
|
|
* Copyright (c) 2000, 2007, Oracle and/or its affiliates. All rights reserved.
|
|
*
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
// -- This file was mechanically generated: Do not edit! -- //
|
|
|
|
package java.nio.channels;
|
|
|
|
|
|
/**
|
|
* Checked exception received by a thread when another thread interrupts it
|
|
* while it is blocked in an I/O operation upon a channel. Before this
|
|
* exception is thrown the channel will have been closed and the interrupt
|
|
* status of the previously-blocked thread will have been set.
|
|
*
|
|
* @since 1.4
|
|
*/
|
|
|
|
public class ClosedByInterruptException
|
|
extends AsynchronousCloseException
|
|
{
|
|
|
|
private static final long serialVersionUID = -4488191543534286750L;
|
|
|
|
/**
|
|
* Constructs an instance of this class.
|
|
*/
|
|
public ClosedByInterruptException() { }
|
|
|
|
}
|