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