mirror of
https://github.com/Rushilwiz/brancher.git
synced 2025-04-21 20:39:49 -04:00
12 lines
256 B
Python
12 lines
256 B
Python
from django.core.exceptions import SuspiciousOperation
|
|
|
|
|
|
class InvalidSessionKey(SuspiciousOperation):
|
|
"""Invalid characters in session key"""
|
|
pass
|
|
|
|
|
|
class SuspiciousSession(SuspiciousOperation):
|
|
"""The session may be tampered with"""
|
|
pass
|