152153154155156157158159
} return new MethodReference(methodName, parameterTypes, declaringClass); } catch (ClassNotFoundException e) { throw new InterceptorException("Error while deserializing intercepted instance", e); } }
157158159160161162163164165166
{ if (interceptorsList.contains(interceptor)) { if (interceptionType != null) { throw new InterceptorException("Duplicate interceptor class definition when binding" + interceptor + " on " + interceptionType.name()); } } } }
686970717273747576
{ callback.call(); } catch (Exception e) { throw new InterceptorException(e); } } }
93949596979899100101