class Autobuild::PackageException

An error occured in a package

Public Class Methods

new(target = nil, phase = nil, options = Hash.new) click to toggle source
Calls superclass method Autobuild::PhaseException::new
# File lib/autobuild/exceptions.rb, line 67
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

Public Instance Methods

mail?() click to toggle source
# File lib/autobuild/exceptions.rb, line 63
def mail?
    true
end