Files
authentik/passbook/saml_idp/exceptions.py
Jens Langhammer fbaab4efaf Many broken things
2018-11-16 09:10:35 +01:00

12 lines
249 B
Python

"""passbook SAML IDP Exceptions"""
class CannotHandleAssertion(Exception):
"""This processor does not handle this assertion."""
pass
class UserNotAuthorized(Exception):
"""User not authorized for SAML 2.0 authentication."""
pass