diff --git a/django/db/models/sql/where.py b/django/db/models/sql/where.py index 2b04cbe708..de51e1db04 100644 --- a/django/db/models/sql/where.py +++ b/django/db/models/sql/where.py @@ -12,14 +12,6 @@ AND = 'AND' OR = 'OR' -class EmptyShortCircuit(Exception): - """ - Internal exception used to indicate that a "matches nothing" node should be - added to the where-clause. - """ - pass - - class WhereNode(tree.Node): """ Used to represent the SQL where-clause.