Commit 02140c34 authored by 周健威's avatar 周健威

Merge remote-tracking branch 'origin/dev' into dev

parents 4daefdd5 b601eef8
......@@ -62,7 +62,7 @@ public class PlatformExceptionHandler {
} catch (Exception ex) {
log.error(ex.getMessage());
}
return assembleResult(ObjectRestResponse.createFailedResult(5000, "服务器开小差了,请稍后重试!"), "Server exception: " + e.getMessage());
return assembleResult(ObjectRestResponse.createFailedResult(5000, "服务器开小差了,请稍后重试!"), "Server exception: " + e);
}
log.error("Server exception: ", e);
Map<String, String> map = new HashMap<>();
......@@ -74,7 +74,7 @@ public class PlatformExceptionHandler {
} catch (Exception ex) {
log.error(ex.getMessage());
}
return assembleResult(ObjectRestResponse.createFailedResult(5000, "服务器开小差了,请稍后重试!"), "Server exception: " + e.getMessage());
return assembleResult(ObjectRestResponse.createFailedResult(5000, "服务器开小差了,请稍后重试!"), "Server exception: " + e);
}
protected ObjectRestResponse<?> assembleResult(ObjectRestResponse<?> error, String msg) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment