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

11 lines
295 B
Objective-C

#import <Foundation/Foundation.h>
@interface MTRpcError : NSObject
@property (nonatomic, readonly) int32_t errorCode;
@property (nonatomic, strong, readonly) NSString *errorDescription;
- (instancetype)initWithErrorCode:(int32_t)errorCode errorDescription:(NSString *)errorDescription;
@end