Class: BOTR::ForbiddenResponse

Inherits:
HTTPResponse show all
Defined in:
lib/botr/http/http_response.rb

Instance Attribute Summary

Attributes inherited from HTTPResponse

#body, #status

Instance Method Summary collapse

Constructor Details

#initialize(body = "") ⇒ ForbiddenResponse

Returns a new instance of ForbiddenResponse.



31
32
33
# File 'lib/botr/http/http_response.rb', line 31

def initialize(body = "")
	super(403, body)
end