class InvalidTrailerError < Error

Inherits from
Error
Includes
BadRequest

Raised when an invalid trailer header is encountered in headers.

Definitions

def initialize(key)

Signature

parameter key String

The trailer key that is invalid.

Implementation

def initialize(key)
	super("Invalid trailer key: #{key.inspect}")
end

attr :key

Signature

attribute String

key The trailer key that is invalid.