Add exception error manager

Signed-off-by: Asai Neko <sugar@sne.moe>
This commit is contained in:
2026-01-21 12:04:17 +08:00
parent 200614a5c9
commit 5dbbdc62e6
11 changed files with 157 additions and 12 deletions

8
exception/status.go Normal file
View File

@@ -0,0 +1,8 @@
package exception
const (
ErrorStatusSuccess = "2"
ErrorStatusUser = "4"
ErrorStatusServer = "5"
ErrorStatusClient = "6"
)