class RSpec::Core::MultipleExceptionError
def initialize(*exceptions)
-
exceptions
(Array
) -- The initial list of exceptions.
def initialize(*exceptions) super() @failures = [] @other_errors = [] @all_exceptions = [] @aggregation_metadata = { :hide_backtrace => true } @aggregation_block_label = nil exceptions.each { |e| add e } end