【调整】调整配置解析错误的格式

【调整】为 README.md 补充gitee相关链接和说明
main
walon 2021-07-30 12:54:14 +08:00
parent 27e9bd2d1f
commit 06e2adf2aa
2 changed files with 18 additions and 7 deletions

View File

@ -8,7 +8,12 @@
![icon](docs/images/icon.png)
## [README - English](./README.en-us.md)
-----
## links
- [README - English](./README.en-us.md)
- [github link](https://github.com/focus-creative-games/luban)
- [gitee link](https://gitee.com/focus-creative-games/luban)
----
## 介绍
@ -35,7 +40,8 @@ Luban适合有以下需求的开发者
- [Excel 配置数据简介](docs/data_excel.md)
- [文档目录](docs/catalog.md)
- [[TODO] 完整手册](docs/manual.md)
- **[====>强烈推荐查看:示例项目 <====](https://github.com/focus-creative-games/luban_examples)**
- **====>强烈推荐查看:示例项目** ([github](https://github.com/focus-creative-games/luban_examples)) ([gitee](https://gitee.com/focus-creative-games/luban_examples)) **<====**
- 支持与联系
- QQ群: 692890842 Luban开发交流群。有使用方面的疑问请及时加QQ群询问随时有人帮助解决。
- 邮箱: taojingjian#gmail.com

View File

@ -428,11 +428,16 @@ namespace Luban.Job.Cfg
catch (DataCreateException e)
{
res.ErrCode = Luban.Common.EErrorCode.DATA_PARSE_ERROR;
res.ErrMsg = $@"加载数据失败.
: {e.OriginDataLocation}
: {e.DataLocationInFile}
Err: {e.OriginErrorMsg}
: {e.VariableFullPathStr}
res.ErrMsg = $@"
=======================================================================
!
: {e.OriginDataLocation}
: {e.DataLocationInFile}
Err: {e.OriginErrorMsg}
: {e.VariableFullPathStr}
=======================================================================
";
res.StackTrace = e.OriginStackTrace;
}