/**
* @tests {@link java.nio.channels.NonReadableChannelException#NonReadableChannelException()}
*/
public void test_Constructor() {
NonReadableChannelException e = new NonReadableChannelException();
assertNull(e.getMessage());
assertNull(e.getLocalizedMessage());
assertNull(e.getCause());
}