NetIQ Mobile SDK for iOS  2.0
Access Manager iOS Framework for OAuth & OIDC
MFError.h
1 //
2 // MFError.h
3 // MFAuthLib
4 //
5 // Created by MicroFocus on 4/27/17.
6 // Copyright © 2017 Microfocus. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 extern NSString *const MFErrorDomain;
12 
13 @interface MFError : NSObject
14 
15 typedef NS_ENUM(NSInteger, MFErrorCode) {
16  MFErrorCodeNoServiceConfiguration = -101,
17  MFErrorCodeAlreadyAuthenticated = -110,
18  MFErrorCodeNoAuthState = -112,
19 };
20 
21 @end
typedef NS_ENUM(NSInteger, OIDErrorCode)
The various error codes returned from the AppAuth library.
Definition: OIDError.h:96
Definition: MFError.h:13