mirror of
https://github.com/dsward2/macSVG.git
synced 2026-03-02 18:23:58 +01:00
10 lines
159 B
Objective-C
Executable File
10 lines
159 B
Objective-C
Executable File
#import "HTTPResponse.h"
|
|
|
|
@interface HTTPErrorResponse : NSObject <HTTPResponse> {
|
|
NSInteger _status;
|
|
}
|
|
|
|
- (id)initWithErrorCode:(int)httpErrorCode;
|
|
|
|
@end
|