The pysnmp.proto package - error handling

Components of pysnmp.proto package may raise exceptions based on the following classes:

class ProtoError([err_msg])

Instances of this class represent an exception occurred in the pysnmp.proto code. This is a subclass of error.PySNNPError class, and a base class for more specific, package-wide exceptions.

class BadArgumentError([err_msg])

Instances of this class represent a bad argument exception occurred in the pysnmp.proto code. This is a subclass of ProtoError class.

class NotImplementedError([err_msg])

Instances of this class are raised to indicate that requested feature is not yet implemented. This is a subclass of ProtoError class.


Subsections

Neither of the above classes defines additional methods to their base classes.


ilya@glas.net