Package muntjac :: Package event :: Module listener_method :: Class MethodException
[hide private]
[frames] | no frames]

Class MethodException

source code

              object --+                
                       |                
exceptions.BaseException --+            
                           |            
        exceptions.Exception --+        
                               |        
        exceptions.StandardError --+    
                                   |    
             exceptions.RuntimeError --+
                                       |
                                      MethodException

Exception that wraps an exception thrown by an invoked method. When ListenerMethod invokes the target method, it may throw arbitrary exception. The original exception is wrapped into MethodException instance and rethrown by the ListenerMethod.


Authors:
Vaadin Ltd., Richard Lincoln

Version: 1.1.2

Instance Methods [hide private]
 
__init__(self, message, cause)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
getCause(self)
Retrieves the cause of this throwable or None if the cause does not exist or not known.
source code
 
getMessage(self)
Returns the error message string of this throwable object.
source code
 
__str__(self)
str(x)
source code

Inherited from exceptions.RuntimeError: __new__

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

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

getCause(self)

source code 

Retrieves the cause of this throwable or None if the cause does not exist or not known.

Returns:
the cause of this throwable or None if the cause is nonexistent or unknown.

getMessage(self)

source code 

Returns the error message string of this throwable object.

Returns:
the error message.

See Also: Exception.message

__str__(self)
(Informal representation operator)

source code 

str(x)

Overrides: object.__str__
(inherited documentation)