Swiftgram/MTProtoKit/MTRpcError.m
Peter Iakovlev 9591c302f5 no message
2018-04-18 17:02:47 +04:00

21 lines
432 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;
}
- (NSString *)description {
return [[NSString alloc] initWithFormat:@"%d: %@", _errorCode, _errorDescription];
}
@end