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