Search in sources :

Example 1 with AcceptPendingException

use of java.nio.channels.AcceptPendingException in project j2objc by google.

the class AcceptPendingExceptionTest method test_empty.

/**
 * java.nio.channels.AcceptPendingException#AcceptPendingException()
 */
public void test_empty() {
    AcceptPendingException e = new AcceptPendingException();
    assertTrue(e instanceof IllegalStateException);
    assertNull(e.getMessage());
    assertNull(e.getLocalizedMessage());
    assertNull(e.getCause());
}
Also used : AcceptPendingException(java.nio.channels.AcceptPendingException)

Aggregations

AcceptPendingException (java.nio.channels.AcceptPendingException)1