class ChefApply::Text::TextWrapper::InvalidKey

Public Class Methods

new(path, terminus) click to toggle source
Calls superclass method
# File lib/chef_apply/text/text_wrapper.rb, line 66
def initialize(path, terminus)
  set_call_context
  # Calling back into Text here seems icky, this is an error
  # that only engineering should see.
  message = "i18n key #{path}.#{terminus} does not exist.\n"
  message << "Referenced from #{line}"
  super(message)
end