-
Bug
-
Resolution: Duplicate
-
P4
-
None
-
1.2.0
-
generic
-
generic
Name: vi73552 Date: 02/24/99
package framework.server;
/**
* The way this class documented makes javadoc produce a warning
* unless the java.io.NotSerializableException is explicitly
* imported, although it's not used directly in the code.
*
* This is undocumented, therefore a bug, not a feature ;-)
*/
class x extends Exception {
/**
* @exception IllegalArgumentException is thrown here to
* prevent getting {@link java.io.NotSerializableException
* NotSerializableException} deep down below the framework,
* beyond the user's control.
*/
public boolean check() {
if ( !(something instanceof Serializable) ) {
throw IllegalArgumentException();
}
return true;
}
}
(Review ID: 53305)
======================================================================
- duplicates
-
JDK-4186644 fails to find @link class unless variable of type is in implementa
-
- Closed
-