Error

public enum Error : Swift.Error, CaseIterable, CustomDebugStringConvertible

This enum is based on the Swift Error protocol, and “wraps” more specific errors. It provides the general error categories.

Communications Error Enum

  • This enum is based on the Swift Error protocol. It provides errors specific to communication with the source server.

    See more

    Declaration

    Swift

    public enum CommunicationError : Swift.Error, CaseIterable, CustomDebugStringConvertible

Parser Error Enum

  • This enum is based on the Swift Error protocol. It provides errors specific to parsing the returned data.

    See more

    Declaration

    Swift

    public enum ParserError : Swift.Error, CaseIterable, CustomDebugStringConvertible
  • Error in communicating with the source server.

    Declaration

    Swift

    case communicationError(error: CommunicationError?)
  • Error parsing the returned meeting data.

    Declaration

    Swift

    case parsingError(error: ParserError?)
  • All other errors.

    Declaration

    Swift

    case generalError(error: Swift.Error?)
  • CaseIterable Conformance Returns empty variants of each case.

    Declaration

    Swift

    public static var allCases: [Error] { get }
  • CustomDebugStringConvertible Conformance Returns a detailed, hierarchical debug description string.

    Declaration

    Swift

    public var debugDescription: String { get }