Source code for importconfig.exceptions

"""Exceptions used by ``ImportConfig`` and it's subclasses."""


[docs]class ImportConfigError(Exception): """Base exception for ImportConfig."""
[docs]class InvalidFilePathError(ImportConfigError): """Exception to be thrown when an invalid filepath is passed."""