Procházet zdrojové kódy

update db exception convert

ls před 2 roky
rodič
revize
970a70dd11
1 změnil soubory, kde provedl 6 přidání a 0 odebrání
  1. 6 0
      db/config.go

+ 6 - 0
db/config.go

@@ -79,6 +79,12 @@ func ReplyToReplyData(reply Reply) *myth.ReplyData {
 			status = myth.ErrUnAuthorized
 		case ErrNotConnect:
 			status = myth.ErrNotFound
+		case ErrExpired:
+			status = myth.ErrNotAllowed
+		case ErrInsufficientBalance:
+			status = myth.ErrNotAllowed
+		case ErrCreditLimit:
+			status = myth.ErrNotAllowed
 		}
 		return myth.ReplyErr(status, reply.LastErr.Error())
 	}