QNErrorCode.m 544 B

12345678910111213141516171819202122232425
  1. //
  2. // QNErrorCode.m
  3. // QiniuSDK
  4. //
  5. // Created by yangsen on 2020/10/21.
  6. // Copyright © 2020 Qiniu. All rights reserved.
  7. //
  8. #import "QNErrorCode.h"
  9. const int kQNUnexpectedSysCallError = -10;
  10. const int kQNNoUsableHostError = -9;
  11. const int kQNSDKInteriorError = -9;
  12. const int kQNMaliciousResponseError = -8;
  13. const int kQNLocalIOError = -7;
  14. const int kQNZeroDataSize = -6;
  15. const int kQNInvalidToken = -5;
  16. const int kQNFileError = -4;
  17. const int kQNInvalidArgument = -3;
  18. const int kQNRequestCancelled = -2;
  19. const int kQNNetworkError = -1;