mirror of
https://github.com/goauthentik/authentik.git
synced 2025-02-12 13:04:23 +00:00
10 lines
212 B
Python
10 lines
212 B
Python
"""flow exceptions"""
|
|
|
|
|
|
class FlowNonApplicableException(BaseException):
|
|
"""Flow does not apply to current user (denied by policy)."""
|
|
|
|
|
|
class EmptyFlowException(BaseException):
|
|
"""Flow has no stages."""
|