Source code for venv_management.errors

"""Exception classes.
"""

[docs]class CommandNotFound(Exception): """Raised when a shell command could not be found."""
[docs]class ImplementationNotFound(Exception): "Raised when a virtual environment driver is not backed by a working implementation."
[docs]class PythonNotFound(Exception): "Raised when the requested Python version is not found."