예제 #1
0
 @Override
 protected Object proceed(MethodInvocation invocation) throws Throwable {
   invocation.proceed();
   if (invocation.didThrowCheckedException()) {
     invocation.rethrow();
   }
   return invocation.getReturnValue();
 }