FitTrackee/fittrackee/workouts/exceptions.py

14 lines
213 B
Python

from fittrackee.exceptions import GenericException
class InvalidGPXException(GenericException):
...
class WorkoutException(GenericException):
...
class WorkoutGPXException(GenericException):
...