class Omnibus::MissingPatch

Public Class Methods

new(patch_name, search_paths) click to toggle source
# File lib/omnibus/exceptions.rb, line 115
def initialize(patch_name, search_paths)
  @patch_name, @search_paths = patch_name, search_paths
end

Public Instance Methods

to_s() click to toggle source
# File lib/omnibus/exceptions.rb, line 119
def to_s
  """
  Attempting to apply the patch #{@patch_name}, but it was not
  found at any of the following locations:

  #{@search_paths.join("\n      ")}
  """
end