| Server IP : 93.86.61.54 / Your IP : 216.73.216.60 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/pysmi/ |
Upload File : |
#
# This file is part of pysmi software.
#
# Copyright (c) 2015-2018, Ilya Etingof <etingof@gmail.com>
# License: http://snmplabs.com/pysmi/license.html
#
# Package exception model:
# Here we subclass base Python exception overriding its constructor to
# accomodate error message string as its first parameter and an open
# set of keyword arguments that become exception object attributes.
# While exception object is bubbling up the call stack, intermediate
# exception handlers may insert their own attributes into exception
# object.
#
class PySmiError(Exception):
def __init__(self, *args, **kwargs):
Exception.__init__(self, *args)
self.msg = args and args[0] or ''
for k in kwargs:
setattr(self, k, kwargs[k])
def __repr__(self):
return '%s(%s)' % (self.__class__.__name__, ', '.join(
['%s=%r' % (k, getattr(self, k)) for k in dir(self) if k[0] != '_' and k != 'args']))
def __str__(self):
return self.msg
class PySmiLexerError(PySmiError):
lineno = '?'
def __str__(self):
return self.msg + ', line %s' % self.lineno
class PySmiParserError(PySmiLexerError):
pass
class PySmiSyntaxError(PySmiParserError):
pass
class PySmiSearcherError(PySmiError):
pass
class PySmiFileNotModifiedError(PySmiSearcherError):
pass
class PySmiFileNotFoundError(PySmiSearcherError):
pass
class PySmiReaderError(PySmiError):
pass
class PySmiReaderFileNotModifiedError(PySmiReaderError):
pass
class PySmiReaderFileNotFoundError(PySmiReaderError):
pass
class PySmiCodegenError(PySmiError):
pass
class PySmiSemanticError(PySmiCodegenError):
pass
class PySmiWriterError(PySmiError):
pass