Guest User

Untitled

a guest
May 25th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. def rescue_action_in_error(exception)
  2. case exception
  3. when WebException
  4. render :file => "#{RAILS_ROOT}/public/#{exception.code}.html", :status => exception.code
  5. else
  6. super
  7. end
  8. end
Add Comment
Please, Sign In to add comment