errorCode.php 691 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * 重庆赤晓店信息科技有限公司
  4. * https://www.chixiaodian.com
  5. * Copyright (c) 2023 赤店商城 All rights reserved.
  6. */
  7. class ErrorCode
  8. {
  9. public static $OK = 0;
  10. public static $ValidateSignatureError = -40001;
  11. public static $ParseXmlError = -40002;
  12. public static $ComputeSignatureError = -40003;
  13. public static $IllegalAesKey = -40004;
  14. public static $ValidateAppidError = -40005;
  15. public static $EncryptAESError = -40006;
  16. public static $DecryptAESError = -40007;
  17. public static $IllegalBuffer = -40008;
  18. public static $EncodeBase64Error = -40009;
  19. public static $DecodeBase64Error = -40010;
  20. public static $GenReturnXmlError = -40011;
  21. }
  22. ?>