master
""" ValidateError class user for Exceptions """ Expected 2 blank lines, found 1class ValidateError(ValueError): """ Exception class for Validations """ def __init__(self, message): super(ValidateError, self).__init__(message)