9 lines
149 B
Python
9 lines
149 B
Python
# coding=UTF-8
|
|
|
|
|
|
class ValidationError(Exception):
|
|
|
|
def __init__(self, message):
|
|
Exception.__init__(self)
|
|
self.message = message
|