Searched refs:ClosedByInterruptException (Results 1 - 5 of 5) sorted by relevance

/libcore/luni/src/main/java/java/nio/channels/
H A DClosedByInterruptException.java20 * A {@code ClosedByInterruptException} is thrown when a thread is interrupted
25 * throws a {@code ClosedByInterruptException}.
27 public class ClosedByInterruptException extends AsynchronousCloseException { class in inherits:AsynchronousCloseException
32 * Constructs a {@code ClosedByInterruptException}.
34 public ClosedByInterruptException() { method in class:ClosedByInterruptException
/libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
H A DClosedByInterruptExceptionTest.java18 import java.nio.channels.ClosedByInterruptException;
25 * Tests for ClosedByInterruptException
30 * @tests {@link java.nio.channels.ClosedByInterruptException#ClosedByInterruptException()}
33 ClosedByInterruptException e = new ClosedByInterruptException();
43 SerializationTest.verifySelf(new ClosedByInterruptException());
51 SerializationTest.verifyGolden(this, new ClosedByInterruptException());
/libcore/luni/src/main/java/java/nio/channels/spi/
H A DAbstractInterruptibleChannel.java23 import java.nio.channels.ClosedByInterruptException;
105 * @throws ClosedByInterruptException
113 throw new ClosedByInterruptException();
/libcore/luni/src/test/java/libcore/java/nio/channels/
H A DOldServerSocketChannelTest.java23 import java.nio.channels.ClosedByInterruptException;
88 errMsg = "should throw ClosedByInterruptException";
89 } catch (ClosedByInterruptException e) {
/libcore/luni/src/test/java/libcore/java/io/
H A DInterruptedStreamTest.java30 import java.nio.channels.ClosedByInterruptException;
147 } catch (ClosedByInterruptException expected) {
186 } catch (ClosedByInterruptException expected) {

Completed in 372 milliseconds