class Rack::Lint::Wrapper::ErrorWrapper

def write(str)

# * +write+ must be called with a single argument that is a String.
def write(str)
  raise LintError, "rack.errors#write not called with a String" unless str.kind_of? String
  @error.write str
end