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

Class SkypeAPIError

source code

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

Exception raised whenever there is a problem with connection between Skype4Py and Skype client. It can be subscripted in which case following information can be obtained:

Index Meaning
0 (unicode) Error description.
Instance Methods
 
__init__(self, errstr)
__init__.
source code

Inherited from exceptions.Exception: __new__

Inherited from exceptions.BaseException: __delattr__, __getattribute__, __getitem__, __getslice__, __reduce__, __repr__, __setattr__, __setstate__, __str__, __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, errstr)
(Constructor)

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