class ActionDispatch::ExceptionWrapper

def original_exception(exception)

def original_exception(exception)
  if @@rescue_responses.has_key?(exception.cause.class.name)
    exception.cause
  else
    exception
  end
end