mptt.exceptions: 2 total statements, 0.0% covered

Generated: Wed 2013-03-13 10:33 CET

Source file: /media/Envs/Envs/filer-gallery/lib/python2.7/site-packages/mptt/exceptions.py

Stats: 0 executed, 2 missed, 0 excluded, 10 ignored

  1. """
  2. MPTT exceptions.
  3. """
  4. class InvalidMove(Exception):
  5. """
  6. An invalid node move was attempted.
  7. For example, attempting to make a node a child of itself.
  8. """
  9. pass