flows: fix FlowNonApplicableException and EmptyFlowException leading to infinite spinners

This commit is contained in:
Jens Langhammer
2020-09-14 18:40:26 +02:00
parent 2c07859b68
commit 5184c4b7ef
4 changed files with 36 additions and 8 deletions

View File

@ -2,8 +2,8 @@
class FlowNonApplicableException(BaseException):
"""Exception raised when a Flow does not apply to a user."""
"""Flow does not apply to current user (denied by policy)."""
class EmptyFlowException(BaseException):
"""Exception raised when a Flow Plan is empty"""
"""Flow has no stages."""