Skip to content

Error Handling

Custom exceptions raised by Envrax when something goes wrong.

envrax.error.MissingPackageError

Bases: ImportError

Raised when one or more required packages for an environment group are not installed.

Source code in envrax/error.py
Python
2
3
4
5
class MissingPackageError(ImportError):
    """Raised when one or more required packages for an environment group are not installed."""

    pass