Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

exceptions.py 256B

1234567891011
  1. from django.core.exceptions import SuspiciousOperation
  2. class InvalidSessionKey(SuspiciousOperation):
  3. """Invalid characters in session key"""
  4. pass
  5. class SuspiciousSession(SuspiciousOperation):
  6. """The session may be tampered with"""
  7. pass