mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2026-01-22 12:08:55 +00:00
17 lines
314 B
Objective-C
17 lines
314 B
Objective-C
#import "MTRpcError.h"
|
|
|
|
@implementation MTRpcError
|
|
|
|
- (instancetype)initWithErrorCode:(int32_t)errorCode errorDescription:(NSString *)errorDescription
|
|
{
|
|
self = [super init];
|
|
if (self != nil)
|
|
{
|
|
_errorCode = errorCode;
|
|
_errorDescription = errorDescription;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|