summaryrefslogtreecommitdiffstats
path: root/core/exceptions.py
blob: 44755382bbd55723e9c49297426030b97ee9a72a (plain)
1
2
3
4
5
6
7
8
9
10
class ActivityPubError(BaseException):
    """
    A problem with an ActivityPub message
    """


class ActorMismatchError(ActivityPubError):
    """
    The actor is not authorised to do the action we saw
    """