session-ios/SignalServiceKit/src/Messages/InvalidKeyMessages/TSInvalidIdentityKeyErrorMessage.m

30 lines
451 B
Objective-C

//
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
//
#import "TSInvalidIdentityKeyErrorMessage.h"
NS_ASSUME_NONNULL_BEGIN
@implementation TSInvalidIdentityKeyErrorMessage
- (void)throws_acceptNewIdentityKey
{
OWSAbstractMethod();
}
- (nullable NSData *)throws_newIdentityKey
{
OWSAbstractMethod();
return nil;
}
- (NSString *)theirSignalId
{
OWSAbstractMethod();
return nil;
}
@end
NS_ASSUME_NONNULL_END