Files
macSVG-mirror/CocoaHTTPServer-master/Core/Responses/HTTPErrorResponse.h
2016-09-15 10:13:52 -05:00

10 lines
159 B
Objective-C
Executable File

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