asciinema.org/app/controllers/exceptions_controller.rb
2012-03-08 15:00:10 +01:00

16 lines
277 B
Ruby

class ExceptionsController < ApplicationController
def not_found
respond_to do |format|
format.any do
render :text => 'Requested resource not found', :status => 404
end
format.html do
render :status => 404
end
end
end
end