This commit is contained in:
Suresh, Kamlesh 2019-07-18 10:54:13 -04:00
parent 9cf84619e6
commit 9e32eeed46

View File

@ -16,28 +16,28 @@ extern NSString * const ErrorDomainServer;
// Native Error Codes (Add new ones to bottom, don't change order!)
typedef NS_ENUM(NSInteger, ErrorCode) {
ErrorCodeDefault = 1,
ErrorCodeParsingJSON,
ErrorCodeNoPageType,
ErrorCodeInitViewController,
ErrorCodeViewControllerProcessingJSON,
ErrorCodeRequiredModuleNotPresent,
ErrorCodeNativeTimeout,
ErrorCodeLinkawayFailed,
ErrorCodePopupFailed,
ErrorCodeUnknownActionType,
ErrorCodeEmptyField,
ErrorCodeInputValidationFailure,
ErrorCodeEmptyResponse,
ErrorCodeStaticCacheFail,
ErrorCodeServerFailSendTouchIDHash,
ErrorCodeJSONNotDictionary,
ErrorCodeNoStoryboardName,
ErrorCodeNoStoryBoardIdentifier,
ErrorCodeNoNibName,
ErrorCodeNoModule,
ErrorCodeInvalidSettingType,
ErrorCodeServerFailSendFaceIDHash,
ErrorCodeSSL,
ErrorCodeNoViewControllerToPresentOn,
ErrorCodeNoErrorPageSent
ErrorCodeParsingJSON, //2
ErrorCodeNoPageType, //3
ErrorCodeInitViewController,//4
ErrorCodeViewControllerProcessingJSON,//5
ErrorCodeRequiredModuleNotPresent,//6
ErrorCodeNativeTimeout,//7
ErrorCodeLinkawayFailed,//8
ErrorCodePopupFailed,//9
ErrorCodeUnknownActionType,//10
ErrorCodeEmptyField,//11
ErrorCodeInputValidationFailure,//12
ErrorCodeEmptyResponse,//13
ErrorCodeStaticCacheFail,//14
ErrorCodeServerFailSendTouchIDHash,//15
ErrorCodeJSONNotDictionary,//16
ErrorCodeNoStoryboardName,//17
ErrorCodeNoStoryBoardIdentifier,//18
ErrorCodeNoNibName,//19
ErrorCodeNoModule,//20
ErrorCodeInvalidSettingType,//21
ErrorCodeServerFailSendFaceIDHash,//22
ErrorCodeSSL,//23
ErrorCodeNoViewControllerToPresentOn,//24
ErrorCodeNoErrorPageSent //25
};