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