mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-26 09:11:00 +00:00
10 lines
215 B
Python
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
|
|
"""
|