12345678910111213141516171819202122232425 |
- <?php
- namespace miniprogram;
- class ErrorCode
- {
- public static $OK = 0;
- public static $IllegalAesKey = -41001;
- public static $IllegalIv = -41002;
- public static $IllegalBuffer = -41003;
- public static $IllegalEmpty = -41006;
- public static $DecodeBase64Error = -41004;
- }
- ?>
|