project_config.exceptions module

Common exceptions.

exception project_config.exceptions.ProjectConfigCheckFailedBase(message: str)[source]

Bases: project_config.exceptions.ProjectConfigException

Exception raised when a check command has failed.

Means that an error has been found in the configuration of the project when using the check command through the CLI.

message: str
exception project_config.exceptions.ProjectConfigException(message: str)[source]

Bases: Exception

Base exception for all the exceptions in project-config.

message: str
exception project_config.exceptions.ProjectConfigNotImplementedError(message: str)[source]

Bases: project_config.exceptions.ProjectConfigException, NotImplementedError

Some functionality is not yet implemented.

message: str