0
0
zero-blog/controller/route_not_found.rb
2013-10-20 22:04:01 +02:00

11 lines
235 B
Ruby

module Routes
class RouteNotFound
def self.call(session)
session.response.status = 404
session.response.content_type = 'text/html'
session.response.body = 'This page does not exist!'
nil
end
end
end