Method: Autobuild::ConfigException#initialize

Defined in:
lib/autobuild/exceptions.rb

#initialize(target = nil, phase = nil, options = Hash.new) ⇒ ConfigException

Returns a new instance of ConfigException.



55
56
57
58
59
# File 'lib/autobuild/exceptions.rb', line 55

def initialize(target = nil, phase = nil, options = Hash.new)
    options, other_options = Kernel.filter_options options,
                                                   retry: false
    super(target, phase, options.merge(other_options))
end