# File lib/bacon.rb, line 239
  def raise?(*exceptions)
    exceptions = [RuntimeError]  if exceptions.empty?
    call

  # Only to work in 1.9.0, rescue with splat doesn't work there right now
  rescue Object => e
    case e
    when *exceptions
      e
    else
      raise e
    end
  else
    false
  end