SDK_Data_Errors

public enum SDK_Data_Errors : Error

These are the errors that may occur while we are trying to parse the data returned from the server.

  • Unkown error. The Int contains any associated error code.

    Declaration

    Swift

    case unknown(Int)
  • The data is not there, or in an unexpected format. The Data may contain the unexpected data.

    Declaration

    Swift

    case invalidData(Data?)