HADataError

public enum HADataError : Error, Equatable

Parse error

  • The given key was missing

    Declaration

    Swift

    case missingKey(String)
  • The given key was present but the type could not be converted

    Declaration

    Swift

    case incorrectType(key: String, expected: String, actual: String)
  • The given key was present but couldn’t be converted

    Declaration

    Swift

    case couldntTransform(key: String)