class GitFetchError(DipError):
    """ Error fetching remote. """
    def __init__(self, remote):
        super(GitFetchError, self).__init__(
            "Error fetching remote '{remote}'".format(remote=remote))