Source code for input_checker.exceptions

[docs]class InputCheckerError(Exception): """Exception with custom name, does not add any extra functionality.""" def __init__(self, *args): super().__init__(*args)