asciinema.org/app/controllers/exceptions_controller.rb

11 lines
242 B
Ruby
Raw Normal View History

2011-11-23 20:46:18 +00:00
class ExceptionsController < ApplicationController
def not_found
respond_to do |format|
format.any { render :text => 'Requested resource not found', :status => 404 }
format.html { render :status => 404 }
end
end
end