# File lib/vendor/route_exceptions.rb, line 21
    def call(env, try_again = true)
      @app.call(env)
    rescue Exception => exception
      raise(exception) unless try_again

      ROUTES.each do |klass, to|
        next unless klass === exception
        return route(to, env, exception)
      end

      raise(exception)
    end