SippoClientError

public enum SippoClientError: Error

Represents errors related to SippoClient

  • forbidden: forbidden
  • notFound: Resource requested (Contact, Chat…) not exists
  • wrongCredential: Wrong credential provided
  • actionNotAllowed: Action not allowed due to user permissions
  • internalError: Server/Network errors
  • Declaration

    Swift

    case notFound(resource: String)
  • Declaration

    Swift

    case actionNotAllowed(user: String, action: String)
  • Declaration

    Swift

    case invalidURL(url: String)
  • Declaration

    Swift

    case internalError(description: String)