12 lines
287 B
Python
12 lines
287 B
Python
"""flow exceptions"""
|
|
|
|
from authentik.lib.sentry import SentryIgnoredException
|
|
|
|
|
|
class FlowNonApplicableException(SentryIgnoredException):
|
|
"""Flow does not apply to current user (denied by policy)."""
|
|
|
|
|
|
class EmptyFlowException(SentryIgnoredException):
|
|
"""Flow has no stages."""
|