| Server IP : 93.86.61.54 / Your IP : 216.73.216.156 Web Server : Apache/2.4.62 (Ubuntu) System : Linux rasin.ddns.net 6.8.0-124-generic #124~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 21:05:19 UTC x86_64 User : www-data ( 33) PHP Version : 8.4.22 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/lib/python3/dist-packages/pysnmp/proto/ |
Upload File : |
#
# This file is part of pysnmp software.
#
# Copyright (c) 2005-2019, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pysnmp/license.html
#
from pyasn1.error import PyAsn1Error
from pysnmp.error import PySnmpError
from pysnmp import debug
class ProtocolError(PySnmpError, PyAsn1Error):
pass
# SNMP v3 exceptions
class SnmpV3Error(ProtocolError):
pass
class StatusInformation(SnmpV3Error):
def __init__(self, **kwargs):
SnmpV3Error.__init__(self)
self.__errorIndication = kwargs
debug.logger & (debug.flagDsp | debug.flagMP | debug.flagSM | debug.flagACL) and debug.logger(
'StatusInformation: %s' % kwargs)
def __str__(self):
return str(self.__errorIndication)
def __getitem__(self, key):
return self.__errorIndication[key]
def __contains__(self, key):
return key in self.__errorIndication
def get(self, key, defVal=None):
return self.__errorIndication.get(key, defVal)
class CacheExpiredError(SnmpV3Error):
pass
class InternalError(SnmpV3Error):
pass
class MessageProcessingError(SnmpV3Error):
pass
class RequestTimeout(SnmpV3Error):
pass