Package qm :: Module common :: Class QMException
[hide private]
[frames] | no frames]

Class QMException

source code

              object --+        
                       |        
exceptions.BaseException --+    
                           |    
        exceptions.Exception --+
                               |
                              QMException
Known Subclasses:

An exception generated directly by QM.

All exceptions thrown by QM should be derived from this class.

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

source code 

Construct a new 'QMException'.

'message' -- A string describing the cause of the message as structured text. If this exception is not handled, the 'message' will be displayed as an error message.

Overrides: object.__init__