Files
Swiftgram/MTProtoKit/MTRpcError.m
Peter Iakovlev e94ad28ed3 no message
2014-12-15 20:13:34 +03:00

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