This commit is contained in:
Lucio Lelii 2015-10-20 16:30:02 +00:00
parent 5fab9a1b99
commit 22d183263b
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ public class MethodRetriever<T> implements InvocationHandler{
try{
return method.invoke(service, args);
}catch(IllegalAccessException | IllegalArgumentException proxyEx){
log.error("error invoking method "+method.getName()+" in service "+service.getClass().getCanonicalName()+" using proxy ");
log.error("error invoking method "+method.getName()+" in service "+service.getClass().getCanonicalName()+" using proxy ", proxyEx);
throw new RuntimeException(proxyEx);
}catch(InvocationTargetException ite){
log.error("exception invoking method "+method.getName()+" in service "+service.getClass().getCanonicalName()+" using proxy ");