123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- <?php
- namespace Mall\Framework\Core;
- class ErrorCode
- {
-
- public static $notShowError = 9999;
-
- public static $paramError = 1001;
-
- public static $userNotFount = 1002;
-
- public static $notAllowAccess = 1003;
-
- public static $mobileCodeFail = 1004;
-
- public static $dberror = 1005;
-
- public static $accountfail = 1006;
-
- public static $swooleRecvError = 1007;
-
- public static $loginedexpire = 1008;
-
- public static $redisWriteError = 1009;
-
- public static $notHaveAclAccess = 1010;
-
- public static $signfail = 1011;
-
- public static $mobileishaved = 1012;
-
- public static $uploadEroor = 1013;
-
- public static $configEroor = 1014;
-
- public static $apiNotResult = 1015;
-
- public static $serviceError = 1016;
-
- public static $notAllowToken = 1017;
-
- public static $contentNotExists = 1018;
-
- public static $nickNameIsHaved = 1019;
-
- public static $actionIsDo = 1020;
-
- public static $weixinPayError = 1021;
-
- public static $invalidAccess = 1021;
-
- public static $resubmit = 1022;
-
- public static $goodsDelete = 1023;
-
- public static $defaultPassword = 1024;
- public static $OK = 0;
- public static $IllegalAesKey = 900004;
- public static $ValidateSignatureError = 900005;
- public static $ComputeSignatureError = 900006;
- public static $EncryptAESError = 900007;
- public static $DecryptAESError = 900008;
- public static $ValidateSuiteKeyError = 900010;
- }
|