OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
python3
/
dist-packages
/
pyasn1
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
03/17/2025 09:32:20 AM
rwxr-xr-x
📄
__init__.py
174 bytes
11/23/2017 06:52:29 PM
rw-r--r--
📁
__pycache__
-
10/21/2019 03:49:47 PM
rwxr-xr-x
📁
codec
-
10/21/2019 03:49:47 PM
rwxr-xr-x
📁
compat
-
10/21/2019 03:49:47 PM
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/21/2019 03:49:47 PM
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. """