Fix ExceptionHandler

This commit is contained in:
2023-11-14 18:45:51 +08:00
parent f86028a449
commit 1281a19bd9

View File

@@ -84,7 +84,7 @@ class ExceptionHandler {
else -> {
logger.error(e.localizedMessage, e)
ResponseResult.fail(ResponseCode.SYSTEM_ERROR, e.localizedMessage, null)
ResponseResult.fail(ResponseCode.SYSTEM_ERROR, e.toString(), null)
}
}
}