Files
custom_wda/WebDriverAgentLib/Vendor/CocoaHTTPServer/Responses/HTTPErrorResponse.h
2026-02-03 16:52:44 +08:00

10 lines
157 B
Objective-C

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