app/django/core/exceptions.py
changeset 323 ff1a9aa48cfd
parent 54 03e267d67478
--- a/app/django/core/exceptions.py	Tue Oct 14 12:36:55 2008 +0000
+++ b/app/django/core/exceptions.py	Tue Oct 14 16:00:59 2008 +0000
@@ -32,3 +32,6 @@
     """Some kind of problem with a model field."""
     pass
 
+class ValidationError(Exception):
+    """An error while validating data."""
+    pass