Bez popisu

ErrorCode.php 201B

1234567891011121314151617
  1. <?php
  2. /**
  3. * 错误码定义.
  4. * @author wangkuiwei
  5. * @name ErrorCode
  6. * @desc 错误码
  7. *
  8. */
  9. namespace xmpush;
  10. class ErrorCode {
  11. const Success = 0;
  12. const NETWORK_ERROR_TIMEOUT = -1;
  13. }
  14. ?>