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