exceptions.py 200 B

123456
  1. from rest_framework.exceptions import APIException
  2. class MissingFilterException(APIException):
  3. status_code = 400
  4. default_detail = "One or more required filters is missing from the request."