class RSpec::Core::Formatters::ExceptionPresenter

def final_exception(exception)

def final_exception(exception)
  if exception.cause
    final_exception(exception.cause)
  else
    exception
  end
end