2022-11-20 11:32:49 -08:00
|
|
|
class ActivityPubError(BaseException):
|
|
|
|
"""
|
|
|
|
A problem with an ActivityPub message
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
2023-07-07 15:29:12 -07:00
|
|
|
class ActivityPubFormatError(ActivityPubError):
|
|
|
|
"""
|
|
|
|
A problem with an ActivityPub message's format/keys
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
2022-11-20 11:32:49 -08:00
|
|
|
class ActorMismatchError(ActivityPubError):
|
|
|
|
"""
|
|
|
|
The actor is not authorised to do the action we saw
|
|
|
|
"""
|