656667686970717273
try { return handler.invoke(method.getName(), parameterTypes, args); } catch (RemoteInvocationException e) { rethrow(method, e); } catch (RemoteException e) { throw new RemoteInvocationException(method.getName(), e); } return null; }
75767778798081828384
returnValue = RemoteObject.toStub(remoteHandler); } return returnValue; } catch (InvocationTargetException e) { throw new RemoteInvocationException(methodName, e.getTargetException()); } catch (Exception e) { throw new RemoteInvocationException(methodName, e); } }