Package qm :: Package test :: Module base :: Class CouldNotLoadExtensionError
[hide private]
[frames] | no frames]

Class CouldNotLoadExtensionError

source code

              object --+            
                       |            
exceptions.BaseException --+        
                           |        
        exceptions.Exception --+    
                               |    
              common.QMException --+
                                   |
                                  CouldNotLoadExtensionError

An exception indicating that an extension class could not be loaded.

Instance Methods [hide private]
 
__init__(self, class_name, exc_info)
Construct a new 'CouldNotLoadExtensionError'.
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 [hide private]

Inherited from exceptions.BaseException: args, message

Inherited from object: __class__

Method Details [hide private]

__init__(self, class_name, exc_info)
(Constructor)

source code 

Construct a new 'CouldNotLoadExtensionError'.

'class_name' -- The name of the class.

'exc_info' -- An exception tuple, as returned by 'sys.exc_info'.

Overrides: object.__init__