AttributeFields and RelationshipFields now store their changes and do not commit...
[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