Вы можете спастись от сгенерированных исключений и решить, что делать:
rescue_from Exception, :with => :render_exception
def render_exception
# examine the Exception here
# and decide which template to render
render :template => "shared/???.html", :status => ???, :layout => 'error'
end
Поместите этот код в app / controllers / application_controller.rb
Я надеюсь, что это какты ищешь ...