refactor: 将全局异常处理器未知异常的异常类型从 Exception 调整为 Throwable

This commit is contained in:
2023-08-15 23:36:26 +08:00
parent 487fa82306
commit 90e1c64db6
4 changed files with 61 additions and 61 deletions

View File

@@ -50,5 +50,5 @@ public class LogContext implements Serializable {
/**
* 异常信息
*/
private Exception exception;
private Throwable exception;
}