From 839d85d493b250b001c071eed9885fbccaa942e3 Mon Sep 17 00:00:00 2001 From: yanweidong Date: Tue, 15 Oct 2024 12:53:06 +0800 Subject: [PATCH] add err code --- exception/auth.go | 1 + 1 file changed, 1 insertion(+) diff --git a/exception/auth.go b/exception/auth.go index ef51fed..e2975ee 100644 --- a/exception/auth.go +++ b/exception/auth.go @@ -14,4 +14,5 @@ var ( ErrAuthClient = Errorf(209, "Auth Token Client Not Passed") ErrJsonDecode = Errorf(210, "Auth JSON Decode Error") ErrJsonEncode = Errorf(211, "Auth JSON Encode Error") + ErrAccountNotFound = Errorf(202, "Account Not Found") )