aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/nio/channels/spi/AbstractInterruptibleChannel.java
diff options
context:
space:
mode:
authorMichael Koch <konqueror@gmx.de>2003-02-11 06:48:53 +0000
committerMichael Koch <mkoch@gcc.gnu.org>2003-02-11 06:48:53 +0000
commitd62f8f8dc77223ebe8623163b7e8bf818f49f037 (patch)
tree882970d5ce34ffb996f39f3ac4426c095669c176 /libjava/java/nio/channels/spi/AbstractInterruptibleChannel.java
parente3b6a47f66e30920f97d8206c57bd881e3a175f7 (diff)
downloadgcc-d62f8f8dc77223ebe8623163b7e8bf818f49f037.zip
gcc-d62f8f8dc77223ebe8623163b7e8bf818f49f037.tar.gz
gcc-d62f8f8dc77223ebe8623163b7e8bf818f49f037.tar.bz2
2003-02-11 Michael Koch <konqueror@gmx.de>
* java/nio/channels/DatagramChannel.java (write): Throws IOException. (connect): Throws IOException. (disconnect): Throws IOException. (read): Throws IOException. (receive): Throws IOException. (send): Throws IOException. * java/nio/channels/Pipe.java (open): Throws IOException. * java/nio/channels/SelectableChannel.java (configureBlocking): Throws IOException. * java/nio/channels/ServerSocketChannel.java (accept): Throws IOException. * java/nio/channels/SocketChannel.java (SocketChannel): Implements ByteChannel, ScatteringByteChannel, GatheringByteChannel. (read): Throws IOException. (write): Throws IOException. (finishConnect): Throws IOException. * java/nio/channels/spi/AbstractInterruptibleChannel.java (end): Throws AsynchronousCloseException. * java/nio/channels/spi/AbstractSelectableChannel.java (configureBlocking): Throws IOException. (implCloseChannel): Throws IOException. (implCloseSelectableChannel): Throws IOException. (implConfigureBlocking): Throws IOException. * java/nio/channels/spi/SelectorProvider.java (openDatagramChannel): Throws IOException. (openPipe): Throws IOException. (openSelector): Throws IOException. (openServerSocketChannel): Throws IOException. (openSocketChannel): Throws IOException. From-SVN: r62682
Diffstat (limited to 'libjava/java/nio/channels/spi/AbstractInterruptibleChannel.java')
-rw-r--r--libjava/java/nio/channels/spi/AbstractInterruptibleChannel.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/libjava/java/nio/channels/spi/AbstractInterruptibleChannel.java b/libjava/java/nio/channels/spi/AbstractInterruptibleChannel.java
index 855087b..dd4177a 100644
--- a/libjava/java/nio/channels/spi/AbstractInterruptibleChannel.java
+++ b/libjava/java/nio/channels/spi/AbstractInterruptibleChannel.java
@@ -38,6 +38,7 @@ exception statement from your version. */
package java.nio.channels.spi;
import java.io.IOException;
+import java.nio.channels.AsynchronousCloseException;
import java.nio.channels.Channel;
import java.nio.channels.InterruptibleChannel;
@@ -84,6 +85,7 @@ public abstract class AbstractInterruptibleChannel
* I/O operation was interrupted.
*/
protected final void end (boolean completed)
+ throws AsynchronousCloseException
{
}