mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-03 22:39:16 +02:00
14 lines
256 B
Python
14 lines
256 B
Python
from rest_framework import authentication, exceptions
|
|
from rest_framework import exceptions
|
|
|
|
|
|
class MalformedPayload(ValueError):
|
|
pass
|
|
|
|
|
|
class MissingSignature(KeyError):
|
|
pass
|
|
|
|
|
|
class BlockedActorOrDomain(exceptions.AuthenticationFailed):
|
|
pass
|