SDK_Connection_Errors

public enum SDK_Connection_Errors : Error

These are the errors that may occur when we are trying to connect to the server.

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

    Declaration

    Swift

    case unknown(Int)
  • The server URI is not valid. The String contains the invalid URI.

    Declaration

    Swift

    case invalidServerURI(String)
  • The URI is valid, but the server is not. The string contains the URI.

    Declaration

    Swift

    case invalidServer(String)