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

Print this page

        

*** 30,50 **** * the target VM. * * @author Gordon Hirsch * @since 1.3 */ ! public class InvocationException extends Exception ! { private static final long serialVersionUID = 6066780907971918568L; ObjectReference exception; ! public InvocationException(ObjectReference exception) ! { super("Exception occurred in target VM"); this.exception = exception; } ! public ObjectReference exception() ! { return exception; } } --- 30,48 ---- * the target VM. * * @author Gordon Hirsch * @since 1.3 */ ! @jdk.Supported ! public class InvocationException extends Exception { private static final long serialVersionUID = 6066780907971918568L; ObjectReference exception; ! public InvocationException(ObjectReference exception) { super("Exception occurred in target VM"); this.exception = exception; } ! public ObjectReference exception() { return exception; } }