class ChefDK::ServiceExceptionInspectors::Base

Attributes

exception[R]

Public Class Methods

new(exception) click to toggle source
# File lib/chef-dk/service_exception_inspectors/base.rb, line 25
def initialize(exception)
  @exception = exception
end

Public Instance Methods

extended_error_info() click to toggle source
# File lib/chef-dk/service_exception_inspectors/base.rb, line 33
def extended_error_info
  ""
end
message() click to toggle source
# File lib/chef-dk/service_exception_inspectors/base.rb, line 29
def message
  exception.message
end