funkwhale/api/funkwhale_api/federation/exceptions.py
Eliot Berriot 4811f35eb5
Linting
2019-01-10 11:11:32 +01:00

13 lines
202 B
Python

from rest_framework import exceptions
class MalformedPayload(ValueError):
pass
class MissingSignature(KeyError):
pass
class BlockedActorOrDomain(exceptions.AuthenticationFailed):
pass