= private = protected
client_error?(code)
Is code a client error status?
# File lib/webrick/httpstatus.rb, line 168 def client_error?(code) code.to_i >= 400 and code.to_i < 500 end