11 lines
215 B
Python
11 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
|
||
|
"""
|