class Borges::NotFoundResponse < Borges::Response def initialize(location) @location = location super() @status = 404 @contents = %^
The location #{@location} does not exist on this server.^ end end