图片透明度调整

This commit is contained in:
黎润豪 2021-12-28 15:26:24 +08:00
parent bd893ce64a
commit 3b045ea424
5 changed files with 2 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

BIN
img/Exception.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 92 KiB

BIN
img/Exception1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

View File

@ -222,7 +222,7 @@ f)修改的方法用`update`作前缀。
1. 业务异常由业务编码人员在ResultCode预先定义根据业务逻辑进行设定视作正常的功能返回HTTP Status Code 200 OK
2. 业务系统异常,影响业务正常运转的异常,均视为系统功能性异常。
![Exception](../img/Exception.jpg)
![Exception](../img/Exception.png)
### 异常处理原则
@ -233,7 +233,7 @@ f)修改的方法用`update`作前缀。
### 异常处理的编码规范
![Exception1](../img/Exception1.jpg)
![Exception1](../img/Exception1.png)
1. 后端编码不要捕获任何异常
不要在业务代码中编写捕获异常的代码, 即 dao、service、controller 层的所有的异常都全部抛出到上层;