- """ Raised by get_subpath when the View can not provide a subpath for the supplied object. """
- silent_variable_failure = True
\ No newline at end of file
+ """ Raised by View.reverse when the View can not provide a subpath for the supplied arguments. """
+ silent_variable_failure = True
+
+
+class AncestorDoesNotExist(Exception):
+ """ Raised by get_path if the root model is not an ancestor of the current model """
+ pass
\ No newline at end of file