猎豆优选

TBSDKErrorHandleDelegate.h 895B

12345678910111213141516171819202122232425262728
  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