class Protocol::HTTP::Body::Wrapper

def close(error = nil)

@parameter error [Exception | Nil] The error that caused this stream to be closed, if any.

Close the body.
def close(error = nil)
	@body.close(error)
	
	# It's a no-op:
	# super
end