PersonalDataFactoryError

public enum PersonalDataFactoryError : Error, Equatable

Defines errors that could be produced by PersonalDataFactory.

Important

This is a Public Preview API. It may be changed or removed at any time.
  • Defines an error when the format of the data doesn’t comply with expectations.

    Note

    contains file path that refers to the corrupted data.

    Important

    This is a Public Preview API. It may be changed or removed at any time.

    Declaration

    Swift

    case corruptedFile(String)
  • Defines an error when a provided file can’t be used for reading or writing to the file system.

    Note

    contains file path that is not possible to use.

    Important

    This is a Public Preview API. It may be changed or removed at any time.

    Declaration

    Swift

    case cannotUseFilepath(String)