b40f08af14394c67d339f6f4e83804aef5a95c50
[philo.git] / exceptions.py
1 class ViewDoesNotProvideSubpaths(Exception):
2         """ Raised by get_subpath when the View does not provide subpaths (the default). """
3         silent_variable_failure = True
4
5 class ViewCanNotProvideSubpath(Exception):
6         """ Raised by get_subpath when the View can not provide a subpath for the supplied object. """
7         silent_variable_failure = True