OXIESEC PANEL
- Current Dir:
/
/
opt
/
alt
/
python37
/
lib
/
python3.7
/
site-packages
/
raven
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
09/05/2025 09:36:16 AM
rwxr-xr-x
📄
__init__.py
1.28 KB
10/29/2017 05:41:19 PM
rw-r--r--
📁
__pycache__
-
02/16/2024 08:51:42 PM
rwxr-xr-x
📄
base.py
29.21 KB
10/29/2017 05:41:19 PM
rw-r--r--
📄
breadcrumbs.py
11.27 KB
10/29/2017 05:41:19 PM
rw-r--r--
📁
conf
-
02/16/2024 08:51:42 PM
rwxr-xr-x
📄
context.py
3.68 KB
10/29/2017 05:41:19 PM
rw-r--r--
📁
contrib
-
02/16/2024 08:51:42 PM
rwxr-xr-x
📄
events.py
4.56 KB
10/29/2017 05:41:19 PM
rw-r--r--
📄
exceptions.py
620 bytes
10/29/2017 05:41:19 PM
rw-r--r--
📁
handlers
-
02/16/2024 08:51:42 PM
rwxr-xr-x
📄
middleware.py
3.51 KB
10/29/2017 05:41:19 PM
rw-r--r--
📄
processors.py
4.18 KB
10/29/2017 05:41:19 PM
rw-r--r--
📁
scripts
-
02/16/2024 08:51:42 PM
rwxr-xr-x
📁
transport
-
02/16/2024 08:51:42 PM
rwxr-xr-x
📁
utils
-
02/16/2024 08:51:42 PM
rwxr-xr-x
📄
versioning.py
2.54 KB
10/29/2017 05:41:19 PM
rw-r--r--
Editing: exceptions.py
Close
from __future__ import absolute_import from raven.utils.compat import text_type class APIError(Exception): def __init__(self, message, code=0): self.code = code self.message = message def __unicode__(self): return text_type("%s: %s" % (self.message, self.code)) class RateLimited(APIError): def __init__(self, message, retry_after=0): self.retry_after = retry_after super(RateLimited, self).__init__(message, 429) class InvalidGitRepository(Exception): pass class ConfigurationError(ValueError): pass class InvalidDsn(ConfigurationError): pass