Skip to content

Class peagen.errors.SpecFileNotFoundError

peagen.errors.SpecFileNotFoundError

SpecFileNotFoundError(spec_path)

Bases: FileNotFoundError

Raised when the DOE specification file is missing.

Source code in peagen/errors.py
27
28
29
def __init__(self, spec_path: str) -> None:
    super().__init__(spec_path)
    self.spec_path = spec_path

spec_path instance-attribute

spec_path = spec_path