No Description

AlibcNetError.h 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /*
  2. * AlibcNetError.h
  3. *
  4. * 阿里百川电商
  5. * 项目名称:阿里巴巴电商 AlibcTradeCommon
  6. * 版本号:3.1.1.200
  7. * 发布时间:2017-08-21
  8. * 开发团队:阿里巴巴百川商业化团队
  9. * 阿里巴巴电商SDK答疑群号:1488705339 2071154343(阿里旺旺)
  10. * Copyright (c) 2016-2019 阿里巴巴-移动事业群-百川. All rights reserved.
  11. */
  12. #import <Foundation/Foundation.h>
  13. #ifndef AlibcNetError_h
  14. #define AlibcNetError_h
  15. @interface AlibcError : NSError
  16. + (instancetype)errorWithDomain:(NSString *)domain code:(NSInteger)code msg:(NSString *)msg;
  17. @end
  18. FOUNDATION_EXPORT NSString *const AlibcNetErrorCodeMtopNotAvailable;
  19. @interface AlibcNetError : NSObject
  20. /**
  21. * 错误码
  22. */
  23. @property(nonatomic, copy) NSString *code;
  24. /**
  25. * 错误信息
  26. */
  27. @property(nonatomic, copy) NSString *msg;
  28. /**
  29. * 原始错误对象
  30. */
  31. @property(nonatomic, strong) NSError *rawError;
  32. /**
  33. * 是否取消了登录
  34. */
  35. @property(assign, nonatomic) BOOL isLoginCancel;
  36. /**
  37. * 是否取消了授权
  38. */
  39. @property(assign, nonatomic) BOOL isAuthCancel;
  40. @end
  41. #endif