AVSError

public enum AVSError : Swift.Error
extension AVSError: Equatable
  • In case of HTTP/Connection error

    Declaration

    Swift

    case network(error: HTTPClientError)
  • When failed to create an AVSMessage

    Declaration

    Swift

    case invalidAVSMessageInput
  • When an X509 certificate was of unexpected format

    Declaration

    Swift

    case invalidX509Input
  • Conversion error when trying to cast to AVSError but error type was different

    Declaration

    Swift

    case unspecified(error: Swift.Error)
  • Internal error

    Declaration

    Swift

    case `internal`(error: InternalError)
  • Declaration

    Swift

    public enum InternalError : Swift.Error
  • Declaration

    Swift

    public static func == (lhs: AVSError, rhs: AVSError) -> Bool