Files
api2/api/exceptions.py
T
2016-07-10 23:41:51 +02:00

9 lines
149 B
Python

# coding=UTF-8
class ValidationError(Exception):
def __init__(self, message):
Exception.__init__(self)
self.message = message