leniu-error-handler
Installation
SKILL.md
leniu-yunshitang-core 异常处理指南
本文档专注于 leniu-tengyun-core 项目的 Java 后端异常处理规范。
快速索引
| 场景 | 推荐方式 |
|---|---|
| 业务异常 | throw new LeException("msg") |
| 带参数异常 | throw new LeException("用户 {} 不存在", userId) |
| 参数校验 | @Validated(InsertGroup.class) |
| 日志记录 | log.error("msg: {}", e.getMessage(), e) |
| 国际化消息 | throw new LeException(I18n.getMessage("key")) |
1. 业务异常 - LeException
基本用法
Related skills