blob: dc6c37913a99d439f714771e760cc147482ef8d8 (
plain)
1
2
3
4
5
6
|
"""Exceptions for Authorisation"""
from gn_auth.auth.authorisation.errors import AuthorisationError
class MissingGroupError(AuthorisationError):
"""Raised for any resource operation without a group."""
|