takahe/core/exceptions.py
2022-11-20 12:32:49 -07:00

10 lines
215 B
Python

class ActivityPubError(BaseException):
"""
A problem with an ActivityPub message
"""
class ActorMismatchError(ActivityPubError):
"""
The actor is not authorised to do the action we saw
"""