Files

10 lines
157 B
C
Raw Permalink Normal View History

2026-02-03 16:52:44 +08:00
#import "HTTPResponse.h"
@interface HTTPErrorResponse : NSObject <HTTPResponse> {
NSInteger _status;
}
- (id)initWithErrorCode:(int)httpErrorCode;
@end