You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
290 B
22 lines
290 B
|
6 days ago
|
---
|
||
|
|
description: 异常处理(Exception)
|
||
|
|
globs:
|
||
|
|
---
|
||
|
|
# 异常处理
|
||
|
|
|
||
|
|
框架自带有: `CoolCommException`
|
||
|
|
|
||
|
|
## 通用异常
|
||
|
|
|
||
|
|
CoolCommException
|
||
|
|
|
||
|
|
返回码: 1001
|
||
|
|
|
||
|
|
返回消息:comm fail
|
||
|
|
|
||
|
|
用法:
|
||
|
|
|
||
|
|
```ts
|
||
|
|
// 可以自定义返回消息
|
||
|
|
throw new CoolCommException('用户不存在~');
|
||
|
|
```
|