10 lines
157 B
Objective-C
10 lines
157 B
Objective-C
#import "HTTPResponse.h"
|
|
|
|
@interface HTTPErrorResponse : NSObject <HTTPResponse> {
|
|
NSInteger _status;
|
|
}
|
|
|
|
- (id)initWithErrorCode:(int)httpErrorCode;
|
|
|
|
@end
|