validationError was moved to new file to avoid circular imports in the future
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
# coding=UTF-8
|
||||
|
||||
class ValidationError(Exception):
|
||||
|
||||
def __init__(self, message):
|
||||
Exception.__init__(self)
|
||||
self.message = message
|
||||
Reference in New Issue
Block a user