GPXParserError

public enum GPXParserError : Error, Equatable

Error describing export errors

  • The provided xml contains no valid GPX.

    Declaration

    Swift

    case invalidGPX
  • Declaration

    Swift

    case noTracksFound
  • The provided xml could not be parsed. Contains the underlying NSError from the XMLParser along with the xml files line number where the error occurred.

    Declaration

    Swift

    case parseError(NSError, Int)
  • The elevation smoothing failed. See ElevationSmoothing for details.

    Declaration

    Swift

    case smoothingError