Orchestration SDK 5.10.1
Loading...
Searching...
No Matches
ActivationInputError.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>
9NS_ASSUME_NONNULL_BEGIN
10
12
16NS_REFINED_FOR_SWIFT
17@interface ActivationInputError : NSObject
18
19- (instancetype)init NS_UNAVAILABLE;
20+ (instancetype)new NS_UNAVAILABLE;
21
27- (instancetype)initWithErrorCode:(int)errorCode exception:(nullable NSException *)exception;
28
33- (instancetype)initWithActivationInputException:(ActivationInputException *)exception;
34
36@property (nonatomic, readonly) int errorCode;
37
39@property (nonatomic, nullable, readonly) NSException *exception;
40
41@end
42
43NS_ASSUME_NONNULL_END
Definition ActivationInputError.h:18
NSException * exception
Definition ActivationInputError.h:39
int errorCode
Definition ActivationInputError.h:36
Definition ActivationInputException.h:16