OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
python3
/
dist-packages
/
pyasn1
Server IP: 10.0.0.4
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
11/20/2022 06:47:16 AM
rwxr-xr-x
📄
__init__.py
174 bytes
11/23/2017 06:52:29 PM
rw-r--r--
📁
__pycache__
-
10/14/2020 08:21:03 AM
rwxr-xr-x
📁
codec
-
10/14/2020 08:21:03 AM
rwxr-xr-x
📁
compat
-
10/14/2020 08:21:03 AM
rwxr-xr-x
📄
debug.py
3.28 KB
11/23/2017 10:52:35 AM
rw-r--r--
📄
error.py
709 bytes
11/21/2017 09:44:44 AM
rw-r--r--
📁
type
-
10/14/2020 08:21:03 AM
rwxr-xr-x
Editing: error.py
Close
# # This file is part of pyasn1 software. # # Copyright (c) 2005-2017, Ilya Etingof <etingof@gmail.com> # License: http://snmplabs.com/pyasn1/license.html # class PyAsn1Error(Exception): """Create pyasn1 exception object The `PyAsn1Error` exception represents generic, usually fatal, error. """ class ValueConstraintError(PyAsn1Error): """Create pyasn1 exception object The `ValueConstraintError` exception indicates an ASN.1 value constraint violation. """ class SubstrateUnderrunError(PyAsn1Error): """Create pyasn1 exception object The `SubstrateUnderrunError` exception indicates insufficient serialised data on input of a deserialisation routine. """