Exception: UnbottledError Private

Inherits:
RuntimeError
  • Object
show all
Defined in:
exceptions.rb

Overview

This class is part of a private API. This class may only be used in the Homebrew/brew repository. Third parties should avoid using this class if possible, as it may be removed or changed without warning.

Raised if the formula or its dependencies are not bottled and are being installed in a situation where a bottle is required.

Instance Method Summary collapse

Constructor Details

#initialize(formulae) ⇒ void

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:



728
729
730
731
732
733
734
735
736
737
738
739
# File 'exceptions.rb', line 728

def initialize(formulae)
  require "utils"

  msg = <<~EOS
    The following #{Utils.pluralize("formula", formulae.count)} cannot be installed from #{Utils.pluralize("bottle", formulae.count)} and must be
    built from source.
      #{formulae.to_sentence}
  EOS
  msg += "#{DevelopmentTools.installation_instructions}\n" unless DevelopmentTools.installed?
  msg.freeze
  super(msg)
end