Package soovee_app :: Package gui :: Module feed :: Class UserCancel
[frames] | no frames]

Class UserCancel

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

Excption class to handle user cancel of a dialog.

Instance Methods
None
__init__(self, value)
Store exception message passed in except statement
Exception
__str__(self)
Return exception instance of UserCancel

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, value)
(Constructor)

 

Store exception message passed in except statement

Parameters:
  • value (exception message) - string
Returns: None
Overrides: object.__init__

__str__(self)
(Informal representation operator)

 

Return exception instance of UserCancel

Returns: Exception
UserCancel instance
Overrides: object.__str__