class Rackful::StatusCodes::HTTP412PreconditionFailed

Public Class Methods

new(header = nil) click to toggle source
Calls superclass method Rackful::StatusCodes::HTTPStatus::new
# File lib/rackful/httpstatus.rb, line 225
def initialize header = nil
  info = header ? { :'Failed precondition:' => header } : {}
  super( 412, '', info )
end