| 1234567891011121314151617181920212223 |
- <?php
- /**
- * 重庆赤晓店信息科技有限公司
- * https://www.chixiaodian.com
- * Copyright (c) 2023 赤店商城 All rights reserved.
- */
- class ErrorCode
- {
- public static $OK = 0;
- public static $ValidateSignatureError = -40001;
- public static $ParseXmlError = -40002;
- public static $ComputeSignatureError = -40003;
- public static $IllegalAesKey = -40004;
- public static $ValidateAppidError = -40005;
- public static $EncryptAESError = -40006;
- public static $DecryptAESError = -40007;
- public static $IllegalBuffer = -40008;
- public static $EncodeBase64Error = -40009;
- public static $DecodeBase64Error = -40010;
- public static $GenReturnXmlError = -40011;
- }
- ?>
|