src/share/classes/com/sun/jdi/InvalidTypeException.java

Print this page

        

*** 30,47 **** * or variable, or in specifying the return value of a method. * * @author James McIlree * @since 1.3 */ ! public class InvalidTypeException extends Exception ! { private static final long serialVersionUID = 2256667231949650806L; ! public InvalidTypeException() ! { super(); } ! public InvalidTypeException(String s) ! { super(s); } } --- 30,46 ---- * or variable, or in specifying the return value of a method. * * @author James McIlree * @since 1.3 */ ! @jdk.Supported ! public class InvalidTypeException extends Exception { private static final long serialVersionUID = 2256667231949650806L; ! ! public InvalidTypeException() { super(); } ! public InvalidTypeException(String s) { super(s); } }