Orchestration SDK 5.10.1
Loading...
Searching...
No Matches
InputError.h
Go to the documentation of this file.
1
2//
3// Copyright (c) since 1999. VASCO DATA SECURITY
4// All rights reserved. http://www.vasco.com
5//
7
8#import <Foundation/Foundation.h>
9#import <MSSOrchestration/InputException.h>
10NS_ASSUME_NONNULL_BEGIN
11
16NS_REFINED_FOR_SWIFT
17@interface InputError : NSObject
18
19
21@property (nonatomic, readonly) int errorCode;
22
24@property (nonatomic, readonly, nullable) NSException *exception;
25
26- (instancetype)init NS_UNAVAILABLE;
27- (instancetype)new NS_UNAVAILABLE;
28- (instancetype)initWithInputException:(InputException *)exception;
29
30@end
31
32NS_ASSUME_NONNULL_END
Definition InputError.h:18
NSException * exception
Definition InputError.h:24
int errorCode
Definition InputError.h:21
Definition InputException.h:17