/* (non-Javadoc)
* @see com.sun.jdi.request.EventRequestManager#createExceptionRequest(com.sun.jdi.ReferenceType, boolean, boolean)
*/
public ExceptionRequest createExceptionRequest(ReferenceType refType, boolean notifyCaught, boolean notifyUncaught) {
ReferenceTypeImpl refTypeImpl = (ReferenceTypeImpl)refType;
ExceptionRequestImpl req = new ExceptionRequestImpl(virtualMachineImpl());
req.addExceptionFilter(refTypeImpl, notifyCaught, notifyUncaught);
EXCEPTION_TYPE.requests.add(req);
return req;
}