Package muntjac :: Package data :: Module validator :: Class EmptyValueException
[hide private]
[frames] | no frames]

Class EmptyValueException

source code

              object --+                    
                       |                    
exceptions.BaseException --+                
                           |                
        exceptions.Exception --+            
                               |            
        exceptions.StandardError --+        
                                   |        
             exceptions.RuntimeError --+    
                                       |    
                  object --+           |    
                           |           |    
         util.IEventListener --+       |    
                               |       |    
   terminal.paintable.IPaintable --+   |    
                                   |   |    
terminal.error_message.IErrorMessage --+    
                                       |    
                   InvalidValueException --+
                                           |
                                          EmptyValueException

A specific type of InvalidValueException that indicates that validation failed because the value was empty. What empty means is up to the thrower.


Authors:
Vaadin Ltd., Richard Lincoln

Version: 1.1.2

Instance Methods [hide private]
 
__init__(self, message)
Constructs a new InvalidValueException with a set of causing validation exceptions.
source code

Inherited from InvalidValueException: addCallback, addListener, getCauses, getDebugId, getErrorLevel, getHtmlMessage, isInvisible, paint, removeCallback, removeListener, requestRepaint, requestRepaintRequests, setDebugId

Inherited from exceptions.RuntimeError: __new__

Inherited from exceptions.BaseException: __delattr__, __getattribute__, __getitem__, __getslice__, __reduce__, __repr__, __setattr__, __setstate__, __str__, __unicode__

Inherited from object: __format__, __hash__, __reduce_ex__, __sizeof__, __subclasshook__

Class Variables [hide private]

Inherited from terminal.error_message.IErrorMessage: CRITICAL, ERROR, INFORMATION, SYSTEMERROR, WARNING

Properties [hide private]

Inherited from exceptions.BaseException: args, message

Inherited from object: __class__

Method Details [hide private]

__init__(self, message)
(Constructor)

source code 

Constructs a new InvalidValueException with a set of causing validation exceptions. The causing validation exceptions are included when the exception is painted to the client.

Parameters:
  • message - The detail message of the problem.
  • causes - One or more InvalidValueExceptions that caused this exception.
Overrides: object.__init__
(inherited documentation)