FitTrackee/fittrackee/workouts/exceptions.py

14 lines
213 B
Python
Raw Normal View History

2021-01-20 16:32:00 +01:00
from fittrackee.exceptions import GenericException
class InvalidGPXException(GenericException):
...
2021-01-20 16:32:00 +01:00
class WorkoutException(GenericException):
...
class WorkoutGPXException(GenericException):
...