class NotInstalledError(DipError):
    """ CLI not installed. """
    def __init__(self, name):
        super(NotInstalledError, self).__init__(
            "'{name}' command is not installed".format(name=name))