RecaptchaError
@interface RecaptchaError : NSErrorError class for reCAPTCHA Events.
- 
                  
                  Human readable error message. DeclarationSwift var errorMessage: String? { get set }Objective-C @property (nonatomic, nullable) NSString *errorMessage;
- 
                  
                  Code relative to the error that was thrown. It maps to RecaptchaErrorCode.DeclarationSwift var errorCode: Int { get set }Objective-C @property (nonatomic) NSInteger errorCode;
- 
                  
                  Builds a new reCAPTCHA Error object. DeclarationSwift init(domain: String, code: RecaptchaErrorCode, userInfo dict: [String : Any]? = nil, message: String?)Objective-C - (nonnull instancetype) initWithDomain:(nonnull NSErrorDomain)domain code:(RecaptchaErrorCode)code userInfo:(NSDictionary<NSErrorUserInfoKey, id> *_Nullable)dict message:(NSString *_Nullable)message;
- 
                  
                  Unavailable Undocumented DeclarationObjective-C - (instancetype)init NS_UNAVAILABLE;
- 
                  
                  For debug purposes, prints a human-friendly description of the error. DeclarationSwift func description() -> StringObjective-C - (nonnull NSString *)description;
- 
                  
                  Deprecated This property is not used on > 18.X.X versions of the SDK. If the returned error code is of type Abortedyou can use this key to get the aborted token out of theuserInfoproperty. The token is stored inside an instance ofRecaptchaToken.DeclarationSwift class var workflowAbortedTokenKey: String { get }Objective-C @property (class, nonatomic, readonly) NSString *_Nonnull workflowAbortedTokenKey;