Commit 9d6ec5a4 by feixiang

异常数据解析

parent da561088
......@@ -21,7 +21,8 @@ class ExceptionParseData
$data = json_decode($msg,true);
} else {
$data['msg'] = $e->getMessage();
$data['code'] = $e->getCode();
$data['code'] = 500;
$data['errorCode'] = -1;
$data['file'] = $e->getFile().' '.$e->getLine();
$data['path'] = [$e->getFile().' '.$e->getLine()];
}
......
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