class InvalidGitRepositoryError(DipError):
    """ Invalid git repository directory. """
    def __init__(self, path):
        super(InvalidGitRepositoryError, self).__init__(
            "No git repository found in '{path}'".format(path=path))