blob: 03f8b01efaa639fa5ecfd7a1fed35647554ba1ce [file] [log] [blame]
package com.sun.jdi;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
public class InvocationException extends Exception {
private ObjectReference exception;
public InvocationException(ObjectReference arg1) {
exception = arg1;
}
public ObjectReference exception() {
return exception;
}
}