summaryrefslogtreecommitdiff
path: root/django/core/exceptions.py
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2017-07-14 10:07:18 -0400
committerTim Graham <timograham@gmail.com>2017-07-14 12:06:06 -0400
commit2e9ada15510e5729c331d7383fc9827e9082a8a9 (patch)
tree0099af2c8e317ffd6c321a78944b57130a08c004 /django/core/exceptions.py
parentfc2dee6908dee70c98453b109180831baac4d9da (diff)
Fixed #28397 -- Removed django.core.exceptions.DjangoRuntimeWarning.
Diffstat (limited to 'django/core/exceptions.py')
-rw-r--r--django/core/exceptions.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/django/core/exceptions.py b/django/core/exceptions.py
index 04ed3bd205..86a3988585 100644
--- a/django/core/exceptions.py
+++ b/django/core/exceptions.py
@@ -8,10 +8,6 @@ class FieldDoesNotExist(Exception):
pass
-class DjangoRuntimeWarning(RuntimeWarning):
- pass
-
-
class AppRegistryNotReady(Exception):
"""The django.apps registry is not populated yet"""
pass