Orchestration SDK 5.10.1
Loading...
Searching...
No Matches
PasswordError.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/PasswordException.h>
10NS_ASSUME_NONNULL_BEGIN
11
16NS_REFINED_FOR_SWIFT
17@interface PasswordError : 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
33- (instancetype)initWithPasswordException:(PasswordException *)exception;
34
35
36@end
37
38NS_ASSUME_NONNULL_END
Definition PasswordError.h:18
NSException * exception
Definition PasswordError.h:24
int errorCode
Definition PasswordError.h:21
Definition PasswordException.h:16