10 lines
158 B
Python
10 lines
158 B
Python
|
from fittrackee.exceptions import GenericException
|
||
|
|
||
|
|
||
|
class WorkoutException(GenericException):
|
||
|
...
|
||
|
|
||
|
|
||
|
class WorkoutGPXException(GenericException):
|
||
|
...
|