CBLMessagingError
@interface CBLMessagingError : NSObjectThe messaging error.
- 
                  
                  The error object. DeclarationObjective-C @property (readonly, nonatomic) NSError *error;Swift var error: Error! { get }
- 
                  
                  The flag identifying whether the error is recoverable or not. DeclarationObjective-C @property (readonly, nonatomic) BOOL isRecoverable;Swift var isRecoverable: Bool { get }
- 
                  
                  Initializes a CBLMessagingError object with the given error and the flag identifying if the error is recoverable or not. The replicator uses isRecoverable flag to determine whether the replication should be retried as the error is recoverable or stopped as the error is non-recoverable. DeclarationObjective-C - (instancetype)initWithError:(NSError *)error isRecoverable:(BOOL)isRecoverable;Swift init!(error: Error!, isRecoverable: Bool)ParameterserrorThe error object. isRecoverableThe flag identifying if the error is recoverable or not. Return ValueThe CBLMessagingError object. 
- 
                  
                  Not available DeclarationObjective-C - (instancetype)init;
 CBLMessagingError Class Reference
        CBLMessagingError Class Reference