Throwable and Error should not be caught
This commit is contained in:
@ -73,7 +73,7 @@ public class OperLogAspect {
|
||||
boolean success = true;
|
||||
try {
|
||||
return joinPoint.proceed();
|
||||
} catch (Throwable e) {
|
||||
} catch (Exception e) {
|
||||
success = false;
|
||||
throw e;
|
||||
} finally {
|
||||
|
Reference in New Issue
Block a user