class ChefApply::WrappedError

Attributes

contained_exception[RW]
target_host[RW]

Public Class Methods

new(e, target_host) click to toggle source
Calls superclass method
# File lib/chef_apply/error.rb, line 50
def initialize(e, target_host)
  super(e.message)
  @contained_exception = e
  @target_host = target_host
end