19 lines
417 B
Objective-C
19 lines
417 B
Objective-C
//
|
|
// MBIMErrorResponse.h
|
|
// kordophoned
|
|
//
|
|
// Created by James Magahern on 8/3/22.
|
|
// Copyright © 2022 James Magahern. All rights reserved.
|
|
//
|
|
|
|
#import "HTTPDataResponse.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface MBIMErrorResponse : HTTPDataResponse
|
|
- (instancetype)initWithErrorCode:(int)httpErrorCode;
|
|
- (instancetype)initWithErrorCode:(int)httpErrorCode message:(NSString *)message;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|