Searched refs:NotYetBoundException (Results 1 - 4 of 4) sorted by relevance

/libcore/luni/src/main/java/java/nio/channels/
H A DNotYetBoundException.java20 * A {@code NotYetBoundException} is thrown if the server socket channel is not
23 public class NotYetBoundException extends IllegalStateException { class in inherits:IllegalStateException
28 * Constructs a {@code NotYetBoundException}.
30 public NotYetBoundException() { method in class:NotYetBoundException
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
H A DNotYetBoundExceptionTest.java18 import java.nio.channels.NotYetBoundException;
25 * Tests for NotYetBoundException
30 * @tests {@link java.nio.channels.NotYetBoundException#NotYetBoundException()}
33 NotYetBoundException e = new NotYetBoundException();
44 SerializationTest.verifySelf(new NotYetBoundException());
52 SerializationTest.verifyGolden(this, new NotYetBoundException());
H A DServerSocketChannelTest.java30 import java.nio.channels.NotYetBoundException;
342 fail("Should throw NotYetBoundException");
343 } catch (NotYetBoundException e) {
353 fail("Should throw NotYetBoundException");
354 } catch (NotYetBoundException e) {
/libcore/luni/src/main/java/java/nio/
H A DServerSocketChannelImpl.java30 import java.nio.channels.NotYetBoundException;
64 throw new NotYetBoundException();

Completed in 83 milliseconds