flows: enum to django TextChoices

This commit is contained in:
Jens Langhammer
2020-05-09 20:54:56 +02:00
parent 3456527f10
commit 8a6009c278
5 changed files with 62 additions and 21 deletions

View File

@ -1,5 +1,9 @@
"""flow exceptions"""
class FlowNonApplicableError(BaseException):
class FlowNonApplicableException(BaseException):
"""Exception raised when a Flow does not apply to a user."""
class EmptyFlowException(BaseException):
"""Exception raised when a Flow Plan is empty"""