diff options
| author | Tom Christie | 2013-06-05 13:45:28 +0100 | 
|---|---|---|
| committer | Tom Christie | 2013-06-05 13:45:28 +0100 | 
| commit | f8a0d31d71bf722741a472c27ae0a10ecbcbcec3 (patch) | |
| tree | a8cb76dbb0c62b17b779c0ee6ec68f334794821d /rest_framework/exceptions.py | |
| parent | 2ca243a1144bb2a5461767a21ed14dec1d2b8dc2 (diff) | |
| download | django-rest-framework-f8a0d31d71bf722741a472c27ae0a10ecbcbcec3.tar.bz2 | |
Remove ConfigurationError in favor of Django's ImproperlyConfigured
Diffstat (limited to 'rest_framework/exceptions.py')
| -rw-r--r-- | rest_framework/exceptions.py | 7 | 
1 files changed, 0 insertions, 7 deletions
| diff --git a/rest_framework/exceptions.py b/rest_framework/exceptions.py index 0c96ecdd..425a7214 100644 --- a/rest_framework/exceptions.py +++ b/rest_framework/exceptions.py @@ -86,10 +86,3 @@ class Throttled(APIException):              self.detail = format % (self.wait, self.wait != 1 and 's' or '')          else:              self.detail = detail or self.default_detail - - -class ConfigurationError(Exception): -    """ -    Indicates an internal server error. -    """ -    pass | 
