class RSpec::Core::MultipleExceptionError

def message

Other tags:
    Note: - RSpec does not actually use this -- instead it formats each exception

Returns:
  • (String) - Combines all the exception messages into a single string.
def message
  all_exceptions.map(&:message).join("\n\n")
end