ParseError

public enum ParseError : Error

Errors occurring when parsing something (for example, parsing a string into an int).

  • The object being parsed does not have the correct format.

    Declaration

    Swift

    case incorrectFormat
  • The object does not contain enough logical components to be parsed.

    Declaration

    Swift

    case notEnoughComponents
  • The object contaisn too many logical components to be parsed.

    Declaration

    Swift

    case tooManyComponents