Source code for ska_sdp_piper.piper.exceptions

[docs] class StageNotFoundException(Exception): """ Raised if a stage name is provided which is not present in the pipeline definition """ pass
[docs] class NoStageToExecuteException(Exception): """ Raised in the event all stages are toggled off, and no stages are provided in the CLI --stages option """ pass
[docs] class PipelineNotFoundException(Exception): pass
__all__ = [ "StageNotFoundException", "NoStageToExecuteException", "PipelineNotFoundException", ]