blob: 9ecf4b0059ca77a05917b112bb524e9d71a4c253 [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;
}
}