# File lib/shotgun/static.rb, line 11
    def call(env)
      status, headers, body = @file.call(env)
      if status > 400
        @app.call(env)
      else
        [status, headers, body]
      end
    end