Skip to content

repo_on_fire.exceptions

Exceptions for the repo-on-file tool.

ExecutableNotFound

Bases: RepoOnFireException

Indicates that a required executable could not be found.

Source code in repo_on_fire/exceptions.py
10
11
class ExecutableNotFound(RepoOnFireException):
    """Indicates that a required executable could not be found."""

RepoOnFireException

Bases: ClickException

Base class for all exceptions raised by repo-on-fire itself.

Source code in repo_on_fire/exceptions.py
6
7
class RepoOnFireException(click.ClickException):
    """Base class for all exceptions raised by repo-on-fire itself."""

RepoRootNotFound

Bases: RepoOnFireException

Could not find the location of the .repo directory.

Source code in repo_on_fire/exceptions.py
14
15
class RepoRootNotFound(RepoOnFireException):
    """Could not find the location of the `.repo` directory."""