mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-03 22:59:15 +02:00
13 lines
202 B
Python
13 lines
202 B
Python
from rest_framework import exceptions
|
|
|
|
|
|
class MalformedPayload(ValueError):
|
|
pass
|
|
|
|
|
|
class MissingSignature(KeyError):
|
|
pass
|
|
|
|
|
|
class BlockedActorOrDomain(exceptions.AuthenticationFailed):
|
|
pass
|