Skip to content

Commit

Permalink
feat(pipeline): remove an exception which has been deprecated for 2 y…
Browse files Browse the repository at this point in the history
…ears
  • Loading branch information
ljgray committed May 13, 2024
1 parent e5ff19e commit 337173f
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions caput/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -368,19 +368,6 @@
# ----------


class PipelineConfigError(config.CaputConfigError):
"""Deprecated. Raised when there is an error setting up a pipeline."""

def __init__(self, message):
warnings.warn(
"caput.pipeline.PipelineConfigError is deprecated. It will get removed in December 2021. "
"Use caput.config.CaputConfigError instead.",
DeprecationWarning,
2,
)
super().__init__(message)


class PipelineRuntimeError(Exception):
"""Raised when there is a pipeline related error at runtime."""

Expand Down

0 comments on commit 337173f

Please sign in to comment.