Skip to content

errors

errors #

The errors the scratch raises.

RecipeError #

Bases: Exception

Base class for every recipe and scratch failure.

Source code in capturegraph-lib/capturegraph/recipes/scratch/errors.py
class RecipeError(Exception):
    """Base class for every recipe and scratch failure."""

ScratchNotConfigured #

Bases: RecipeError

A file-producing operation ran before a scratch was configured.

Source code in capturegraph-lib/capturegraph/recipes/scratch/errors.py
class ScratchNotConfigured(RecipeError):
    """A file-producing operation ran before a scratch was configured."""