[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/Forms - Exceptions.py:1.4

Jim Fulton jim@zope.com
Mon, 11 Nov 2002 15:26:26 -0500


Update of /cvs-repository/Zope3/lib/python/Zope/App/Forms
In directory cvs.zope.org:/tmp/cvs-serv16330

Modified Files:
	Exceptions.py 
Log Message:
Added MissingInputError to model cases where input is missing.


=== Zope3/lib/python/Zope/App/Forms/Exceptions.py 1.3 => 1.4 ===
--- Zope3/lib/python/Zope/App/Forms/Exceptions.py:1.3	Mon Oct 28 18:52:31 2002
+++ Zope3/lib/python/Zope/App/Forms/Exceptions.py	Mon Nov 11 15:26:26 2002
@@ -27,6 +27,9 @@
         self.widget_title = widget_title
         self.errors = errors
 
+class MissingInputError(WidgetInputError):
+    """Required data was not supplied
+    """
 
 class ConversionError(WidgetInputError):
     """If some conversion fails, this exception is raised.