Package Skype4Py :: Module errors :: Class SkypeError
[frames] | no frames]

Class SkypeError

source code

              object --+        
                       |        
exceptions.BaseException --+    
                           |    
        exceptions.Exception --+
                               |
                              SkypeError

Raised whenever Skype client reports an error back to Skype4Py. It can be subscripted in which case following information can be obtained:

Index Meaning
0 (int) Error code. See below.
1 (unicode) Error description.

See Also: https://developer.skype.com/Docs/ApiDoc/Error_codes for more information about Skype error codes. Additionally an error code 0 can be raised by Skype4Py itself.

Instance Methods
 
__init__(self, errno, errstr)
__init__.
source code
 
__str__(self)
str(x)
source code

Inherited from exceptions.Exception: __new__

Inherited from exceptions.BaseException: __delattr__, __getattribute__, __getitem__, __getslice__, __reduce__, __repr__, __setattr__, __setstate__, __unicode__

Inherited from object: __format__, __hash__, __reduce_ex__, __sizeof__, __subclasshook__

Properties

Inherited from exceptions.BaseException: args, message

Inherited from object: __class__

Method Details

__init__(self, errno, errstr)
(Constructor)

source code 
__init__.
Parameters:
  • errno (int) - Error code.
  • errstr (unicode) - Error description.
Overrides: object.__init__

__str__(self)
(Informal representation operator)

source code 

str(x)

Overrides: object.__str__
(inherited documentation)