exceptions.py 435 B

123456789101112131415
  1. class AjaxError(Exception):
  2. """You've tried to do something over AJAX but misago blurped"""
  3. def __init__(self, message=None, code=406):
  4. self.message = message
  5. self.code = code
  6. class ExplicitFirstPage(Exception):
  7. """The url that was used to reach view contained explicit first page"""
  8. pass
  9. class OutdatedSlug(Exception):
  10. """The url that was used to reach view contained outdated slug"""
  11. pass