Merge branch 'feature/comments' into 'develop'

comments

See merge request BPHV_MIPS/mvm_core!21
This commit is contained in:
Pan, Xinlei (Ryan) 2019-07-18 11:11:54 -04:00
commit 9ef3a65ae3

View File

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