1# ------------------------------------------------------------------------- 2 3# Copyright (c) Microsoft Corporation. All rights reserved. 4# Licensed under the MIT License. See License.txt in the project root for 5# license information. 6# -------------------------------------------------------------------------- 7""" 8input_error module: 9This module include custom exceptions 10""" 11 12 13class InputError(ValueError): 14 15 """ This class provides custom exception for validating input data """ 16 17