exceptions.py 240 B

123456789
  1. from rest_framework.exceptions import APIException
  2. import json
  3. class PdnsException(APIException):
  4. def __init__(self, response):
  5. self.status_code = response.status_code
  6. self.detail = json.loads(response.text)['error']