酷店

TBSDKErrorHandleDelegate.h 904B

123456789101112131415161718192021222324252627
  1. // '########'########::'######:'########:'##:::'##:
  2. // ... ##..::##.... ##'##... ##:##.... ##:##::'##::
  3. // ::: ##::::##:::: ##:##:::..::##:::: ##:##:'##:::
  4. // ::: ##::::########:. ######::##:::: ##:#####::::
  5. // ::: ##::::##.... ##:..... ##:##:::: ##:##. ##:::
  6. // ::: ##::::##:::: ##'##::: ##:##:::: ##:##:. ##::
  7. // ::: ##::::########:. ######::########::##::. ##:
  8. // :::..::::........:::......::........::..::::..::
  9. //
  10. // Created by 亿刀/禚来强 on 13-1-31.
  11. // Copyright (c) 2013年 Taobao. All rights reserved.
  12. //
  13. #import <Foundation/Foundation.h>
  14. @class TBSDKServer;
  15. @protocol TBSDKErrorRule;
  16. @protocol TBSDKErrorHandleDelegate <NSObject>
  17. @required
  18. //! 如果返回值不为nil,表示有业务错误,反之,表示服务器返回值没有业务错误,是一次成功的网络请求
  19. - (id<TBSDKErrorRule>)tbsdkErrorHandleWithServer:(TBSDKServer *)server;
  20. @end