Exception: Rackful::HTTP412PreconditionFailed
- Inherits:
-
HTTPStatus
- Object
- RuntimeError
- HTTPStatus
- Rackful::HTTP412PreconditionFailed
- Defined in:
- gems/rackful-0.1.1/lib/rackful_http_status.rb,
gems/rackful-0.1.1.orig/lib/rackful_http_status.rb
Overview
Instance Attribute Summary
Attributes inherited from HTTPStatus
#headers, #status, #to_rackful
Attributes included from Resource
#get_etag, #get_last_modified, #path
Instance Method Summary (collapse)
-
- (HTTP412PreconditionFailed) initialize(header = nil)
constructor
A new instance of HTTP412PreconditionFailed.
Methods included from Resource
#default_headers, #destroy, #do_METHOD, #empty?, #http_DELETE, #http_GET, #http_HEAD, #http_OPTIONS, #http_PUT, #http_method, #http_methods, included, #requested?, #serializer, #title, #to_rackful, #to_struct
Constructor Details
- (HTTP412PreconditionFailed) initialize(header = nil)
A new instance of HTTP412PreconditionFailed
255 256 257 258 259 260 261 262 263 |
# File 'gems/rackful-0.1.1/lib/rackful_http_status.rb', line 255 def initialize header = nil info = if header { header.to_sym => Request.current.env[ 'HTTP_' + header.gsub('-', '_').upcase ] } else {} end super 412, 'Failed precondition:', info end |