DittoSwiftError

public enum DittoSwiftError : Error
extension DittoSwiftError: LocalizedError

All errors that are thrown by the Ditto SDK are wrapped as a DittoSwiftError. It wraps multiple different types of error that each have an associated reason.

You can access more specific information about an error by switching over the error’s reason value. If you want a human-readable version of the error then call localizedDescription on the error’s reason.

  • activationError: An error occurred relating to activating the Ditto instance.
  • authenticationError: An error occurred relating to authenticating the Ditto instance.
  • storeError: An error occurred relating to the store.
  • transportError: An error occurred relating to the network transports.
  • The possible underlying reasons an .activationError error occurs.

    • notActivatedError: The Ditto instance has not yet been activated, which is achieved via a successful call to setAccessLicense.
    • licenseTokenExpired: The provided license token has expired.
    • licenseTokenVerificationFailed: Verification of the provided license token failed.
    • licenseTokenUnsupportedFutureVersion: The provided license token is in an unsupported future format.
    See more

    Declaration

    Swift

    public enum ActivationErrorReason
  • The possible underlying reasons an .authenticationError error occurs.

    • failedToAuthenticate: Failed to authenticate with remote server.
    See more

    Declaration

    Swift

    public enum AuthenticationErrorReason
  • The possible underlying reasons a .storeError error occurs.

    • backendError: An error occurred with the storage backend (LMDB).
    • documentContentEncodingFailed: The provided document content failed to be encoded.
    • failedToDecodeDocumentID: The document’s ID could not be decoded.
    • nonStringKeyInDocument: The document, represented as a CBOR map, had a key that was not a string.
    • invalidDocumentStructure: The document’s internal representation was invalid.
    • failedToDecodeDocumentData: The document’s data could not be decoded.
    • failedToGetDocumentData: The document’s data at the specified path could not be obtained.
    • failedToDecodeDocument: The document could not be decoded.
    • documentNotFound: The document could not be found.
    • attachmentDataRetrievalError: The attachment data failed to be retrieved.
    • attachmentFileCopyError: The attachment file failed to be copied.
    • queryError: The query was invalid.
    • quaryArgumentsInvalid: The query arguments were invalid.
    See more

    Declaration

    Swift

    public enum StoreErrorReason
  • The possible underlying reasons a .transportError error occurs.

    • diagnosticsUnavailable: The request to get transport diagnostics failed.
    • failedToDecodeTransportDiagnostics: Decoding of transport diagnostics data failed.
    See more

    Declaration

    Swift

    public enum TransportErrorReason
  • Undocumented

    See more

    Declaration

    Swift

    public enum BusErrorReason
  • Undocumented

    Declaration

    Swift

    case activationError(reason: ActivationErrorReason)
  • Undocumented

    Declaration

    Swift

    case authenticationError(reason: AuthenticationErrorReason)
  • Undocumented

    Declaration

    Swift

    case busError(reason: BusErrorReason)
  • Undocumented

    Declaration

    Swift

    case storeError(reason: StoreErrorReason)
  • Undocumented

    Declaration

    Swift

    case transportError(reason: TransportErrorReason)
  • Provides a description of the error.

    Declaration

    Swift

    public var errorDescription: String? { get }