class Borges::NotFoundResponse < Borges::Response def initialize(location) @location = location super() @status = 404 @contents = %^404 - Not Found

404 - Not Found

The location #{@location} does not exist on this server.^ end end