14 lines
213 B
Python
14 lines
213 B
Python
from fittrackee.exceptions import GenericException
|
|
|
|
|
|
class InvalidGPXException(GenericException):
|
|
...
|
|
|
|
|
|
class WorkoutException(GenericException):
|
|
...
|
|
|
|
|
|
class WorkoutGPXException(GenericException):
|
|
...
|