Added a docstring to CyclicDependency exception class.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7911 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
e47d8e7fb1
commit
1bb8809561
|
@ -21,7 +21,12 @@ ITER_CHUNK_SIZE = CHUNK_SIZE
|
||||||
# Pull into this namespace for backwards compatibility.
|
# Pull into this namespace for backwards compatibility.
|
||||||
EmptyResultSet = sql.EmptyResultSet
|
EmptyResultSet = sql.EmptyResultSet
|
||||||
|
|
||||||
|
|
||||||
class CyclicDependency(Exception):
|
class CyclicDependency(Exception):
|
||||||
|
"""
|
||||||
|
An error when dealing with a collection of objects that have a cyclic
|
||||||
|
dependency, i.e. when deleting multiple objects.
|
||||||
|
"""
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue