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