= private = protected
server_error?(code)
Is code a server error status?
# File lib/webrick/httpstatus.rb, line 174 def server_error?(code) code.to_i >= 500 and code.to_i < 600 end