HTTPErrorResponse.h 159 B

12345678910
  1. #import "HTTPResponse.h"
  2. @interface HTTPErrorResponse : NSObject <HTTPResponse> {
  3. NSInteger _status;
  4. }
  5. - (id)initWithErrorCode:(int)httpErrorCode;
  6. @end