Orchestration SDK 5.10.1
Loading...
Searching...
No Matches
OrchestrationServerError.h
Go to the documentation of this file.
1
2//
3// © 1999 – 2019 OneSpan North America Inc. All rights reserved.
4// All rights reserved. https://www.onespan.com/
5//
7
8#import <Foundation/Foundation.h>
9NS_ASSUME_NONNULL_BEGIN
10
16NS_REFINED_FOR_SWIFT
17@interface OrchestrationServerError : NSObject
18
19@property (nonatomic, readonly) NSString *readableMessage;
20@property (nonatomic, readonly, nullable) NSString *customPayload;
21
22- (instancetype)init NS_UNAVAILABLE;
23+ (instancetype)new NS_UNAVAILABLE;
24
29- (instancetype)initWithReadableMessage:(NSString*)readableMessage;
30
36- (instancetype)initWithReadableMessage:(NSString*)readableMessage customPayload:(nullable NSString *)customPayload;
37
38@end
39
40NS_ASSUME_NONNULL_END
Definition OrchestrationServerError.h:18
NSString * customPayload
Definition OrchestrationServerError.h:20
NSString * readableMessage
Definition OrchestrationServerError.h:19