exceptions.py 171 B

1234567
  1. """
  2. Extra exceptions that can be raised by Misago Views
  3. """
  4. class OutdatedSlug(Exception):
  5. """The url that was used to reach view contained outdated slug"""
  6. pass