| |
- exceptions.Exception(exceptions.BaseException)
-
- Error
-
- InvalidAVPLengthError
- InvalidAVPValueError
- InvalidAddressTypeError
class Error(exceptions.Exception) |
|
Common base class for Diameter errors |
|
- Method resolution order:
- Error
- exceptions.Exception
- exceptions.BaseException
- __builtin__.object
Methods defined here:
- __init__(self, avp=None)
Data and other attributes defined here:
- __weakref__ = <attribute '__weakref__' of 'Error' objects>
- list of weak references to the object (if defined)
Data and other attributes inherited from exceptions.Exception:
- __new__ = <built-in method __new__ of type object at 0x2acac46b2e20>
- T.__new__(S, ...) -> a new object with type S, a subtype of T
Methods inherited from exceptions.BaseException:
- __delattr__(...)
- x.__delattr__('name') <==> del x.name
- __getattribute__(...)
- x.__getattribute__('name') <==> x.name
- __getitem__(...)
- x.__getitem__(y) <==> x[y]
- __getslice__(...)
- x.__getslice__(i, j) <==> x[i:j]
Use of negative indices is not supported.
- __reduce__(...)
- __repr__(...)
- x.__repr__() <==> repr(x)
- __setattr__(...)
- x.__setattr__('name', value) <==> x.name = value
- __setstate__(...)
- __str__(...)
- x.__str__() <==> str(x)
- __unicode__(...)
Data and other attributes inherited from exceptions.BaseException:
- __dict__ = <dictproxy object at 0x9affa0>
- args = <attribute 'args' of 'exceptions.BaseException' objects>
- message = <attribute 'message' of 'exceptions.BaseException' objects>
|
class InvalidAVPLengthError(Error) |
|
An AVP with invalid length (according to its expected type) was encountered |
|
- Method resolution order:
- InvalidAVPLengthError
- Error
- exceptions.Exception
- exceptions.BaseException
- __builtin__.object
Methods defined here:
- __init__(self, avp=None)
Data and other attributes inherited from Error:
- __weakref__ = <attribute '__weakref__' of 'Error' objects>
- list of weak references to the object (if defined)
Data and other attributes inherited from exceptions.Exception:
- __new__ = <built-in method __new__ of type object at 0x2acac46b2e20>
- T.__new__(S, ...) -> a new object with type S, a subtype of T
Methods inherited from exceptions.BaseException:
- __delattr__(...)
- x.__delattr__('name') <==> del x.name
- __getattribute__(...)
- x.__getattribute__('name') <==> x.name
- __getitem__(...)
- x.__getitem__(y) <==> x[y]
- __getslice__(...)
- x.__getslice__(i, j) <==> x[i:j]
Use of negative indices is not supported.
- __reduce__(...)
- __repr__(...)
- x.__repr__() <==> repr(x)
- __setattr__(...)
- x.__setattr__('name', value) <==> x.name = value
- __setstate__(...)
- __str__(...)
- x.__str__() <==> str(x)
- __unicode__(...)
Data and other attributes inherited from exceptions.BaseException:
- __dict__ = <dictproxy object at 0x9afe88>
- args = <attribute 'args' of 'exceptions.BaseException' objects>
- message = <attribute 'message' of 'exceptions.BaseException' objects>
|
class InvalidAVPValueError(Error) |
|
An AVP was well-formed but had invalid value in the context |
|
- Method resolution order:
- InvalidAVPValueError
- Error
- exceptions.Exception
- exceptions.BaseException
- __builtin__.object
Methods defined here:
- __init__(self, avp)
Data and other attributes inherited from Error:
- __weakref__ = <attribute '__weakref__' of 'Error' objects>
- list of weak references to the object (if defined)
Data and other attributes inherited from exceptions.Exception:
- __new__ = <built-in method __new__ of type object at 0x2acac46b2e20>
- T.__new__(S, ...) -> a new object with type S, a subtype of T
Methods inherited from exceptions.BaseException:
- __delattr__(...)
- x.__delattr__('name') <==> del x.name
- __getattribute__(...)
- x.__getattribute__('name') <==> x.name
- __getitem__(...)
- x.__getitem__(y) <==> x[y]
- __getslice__(...)
- x.__getslice__(i, j) <==> x[i:j]
Use of negative indices is not supported.
- __reduce__(...)
- __repr__(...)
- x.__repr__() <==> repr(x)
- __setattr__(...)
- x.__setattr__('name', value) <==> x.name = value
- __setstate__(...)
- __str__(...)
- x.__str__() <==> str(x)
- __unicode__(...)
Data and other attributes inherited from exceptions.BaseException:
- __dict__ = <dictproxy object at 0x9afec0>
- args = <attribute 'args' of 'exceptions.BaseException' objects>
- message = <attribute 'message' of 'exceptions.BaseException' objects>
|
class InvalidAddressTypeError(Error) |
|
An Address AVP with invalid address type was encountered |
|
- Method resolution order:
- InvalidAddressTypeError
- Error
- exceptions.Exception
- exceptions.BaseException
- __builtin__.object
Methods defined here:
- __init__(self, avp=None)
Data and other attributes inherited from Error:
- __weakref__ = <attribute '__weakref__' of 'Error' objects>
- list of weak references to the object (if defined)
Data and other attributes inherited from exceptions.Exception:
- __new__ = <built-in method __new__ of type object at 0x2acac46b2e20>
- T.__new__(S, ...) -> a new object with type S, a subtype of T
Methods inherited from exceptions.BaseException:
- __delattr__(...)
- x.__delattr__('name') <==> del x.name
- __getattribute__(...)
- x.__getattribute__('name') <==> x.name
- __getitem__(...)
- x.__getitem__(y) <==> x[y]
- __getslice__(...)
- x.__getslice__(i, j) <==> x[i:j]
Use of negative indices is not supported.
- __reduce__(...)
- __repr__(...)
- x.__repr__() <==> repr(x)
- __setattr__(...)
- x.__setattr__('name', value) <==> x.name = value
- __setstate__(...)
- __str__(...)
- x.__str__() <==> str(x)
- __unicode__(...)
Data and other attributes inherited from exceptions.BaseException:
- __dict__ = <dictproxy object at 0x9affa0>
- args = <attribute 'args' of 'exceptions.BaseException' objects>
- message = <attribute 'message' of 'exceptions.BaseException' objects>
| |