class BooksController < ApplicationController rescue_from ActiveRecord::RecordNotFound, :with => :book_not_found def show @book = Book.find(params[:id]) end def book_not_found render :text => "That book is not found" end end