Source code for pygalgen.generator.common.source_file_parsing.parsing_exceptions

"""
Module containing Exceptions that can be raised during param discovery
"""
[docs] class ArgumentParsingDiscoveryError(Exception): """ Exception for general error encountered during param extraction """ pass
[docs] class ArgParseImportNotFound(ArgumentParsingDiscoveryError): """ Exception raised in case ArgParser was not imported """ pass
[docs] class ArgParserNotUsed(ArgumentParsingDiscoveryError): """ Exception raised in case no uses of argument parser were found """ pass