fix: 异常处理

This commit is contained in:
taojinlong 2022-03-02 18:52:05 +08:00
parent 81e90f2ac6
commit 76e759e605

View File

@ -68,7 +68,7 @@ public class DePermissionAnnotationHandler {
return point.proceed(point.getArgs());
} catch (Throwable throwable) {
LogUtil.error(throwable.getMessage(), throwable);
throw new RuntimeException(throwable);
throw new RuntimeException(throwable.getMessage());
}
}