FitTrackee/fittrackee/users/exceptions.py

15 lines
198 B
Python
Raw Normal View History

class InvalidEmailException(Exception):
...
2023-03-12 11:09:04 +01:00
class UserControlsException(Exception):
...
class UserCreationException(Exception):
...
class UserNotFoundException(Exception):
...