FitTrackee/fittrackee/workouts/exceptions.py
2021-01-20 16:32:00 +01:00

10 lines
158 B
Python

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