validationError was moved to new file to avoid circular imports in the future

This commit is contained in:
Martin
2016-07-08 16:41:33 +02:00
parent 6b6121c5af
commit 23ab6588f7
3 changed files with 9 additions and 8 deletions
+7
View File
@@ -0,0 +1,7 @@
# coding=UTF-8
class ValidationError(Exception):
def __init__(self, message):
Exception.__init__(self)
self.message = message