Orchestration SDK 5.10.1
Loading...
Searching...
No Matches
OrchestrationError.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 OrchestrationError : NSObject
18
19- (instancetype)init NS_UNAVAILABLE;
20+ (instancetype)new NS_UNAVAILABLE;
21
23@property (nonatomic, readonly) NSInteger errorCode;
24
26@property (nonatomic, readonly, nullable) NSException *exception;
27
29@property (nonatomic, readonly, nullable) NSError *error;
30
35@property (nonatomic, readonly) NSInteger internalErrorCode;
36
37@end
38
39NS_ASSUME_NONNULL_END
Definition OrchestrationError.h:18
NSException * exception
Definition OrchestrationError.h:26
NSInteger internalErrorCode
Definition OrchestrationError.h:35
NSError * error
Definition OrchestrationError.h:29
NSInteger errorCode
Definition OrchestrationError.h:23