Files
api2/api/exceptions.py
T

8 lines
148 B
Python

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