Method: ChefApply::WrappedError#initialize

Defined in:
lib/chef_apply/error.rb

#initialize(e, target_host) ⇒ WrappedError

Returns a new instance of WrappedError.



50
51
52
53
54
# File 'lib/chef_apply/error.rb', line 50

def initialize(e, target_host)
  super(e.message)
  @contained_exception = e
  @target_host = target_host
end