in asm/src/main/java/org/apache/commons/proxy2/asm/ASMProxyFactory.java [350:360]
public Object invokeImpl(Object proxy, Method method, Object[] args) throws Throwable
{
try
{
return method.invoke(delegateProvider.getObject(), args);
}
catch (InvocationTargetException e)
{
throw e.getTargetException();
}
}