exceptions.py 233 B

12345678
  1. class ExplicitFirstPage(Exception):
  2. """The url that was used to reach view contained explicit first page"""
  3. pass
  4. class OutdatedSlug(Exception):
  5. """The url that was used to reach view contained outdated slug"""
  6. pass