class Ridley::Errors::HTTPUnknownStatus
Public Class Methods
new(env)
click to toggle source
Calls superclass method
Ridley::Errors::HTTPError::new
# File lib/ridley/errors.rb, line 132 def initialize(env) super(env) @message = "status: #{env[:status]} is an unknown HTTP status code or not an error." end