Commit 1bb88095 authored by Gary Wilson Jr's avatar Gary Wilson Jr
Browse files

Added a docstring to CyclicDependency exception class.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@7911 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent e47d8e7f
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -21,7 +21,12 @@ ITER_CHUNK_SIZE = CHUNK_SIZE
# Pull into this namespace for backwards compatibility.
EmptyResultSet = sql.EmptyResultSet


class CyclicDependency(Exception):
    """
    An error when dealing with a collection of objects that have a cyclic
    dependency, i.e. when deleting multiple objects.
    """
    pass