FitTrackee/fittrackee/workouts/exceptions.py

10 lines
158 B
Python
Raw Normal View History

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