Exception: Utils::Inreplace::Error Private
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- Utils::Inreplace::Error
- Defined in:
- utils/inreplace.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.
Error during replacement.
Instance Method Summary collapse
-
#initialize(errors) ⇒ Error
constructor
private
A new instance of Error.
Constructor Details
#initialize(errors) ⇒ Error
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.
Returns a new instance of Error.
15 16 17 18 19 20 |
# File 'utils/inreplace.rb', line 15 def initialize(errors) formatted_errors = errors.reduce(+"inreplace failed\n") do |s, (path, errs)| s << "#{path}:\n" << errs.map { |e| " #{e}\n" }.join end super formatted_errors.freeze end |