class NoSuchPathError(DipError):
    """ Invalid git repository directory. """
    def __init__(self, path):
        super(NoSuchPathError, self).__init__(
            "Path does not exist '{path}'".format(path=path))