A nifty one-liner (thanks to ActiveSupport) to list all the Rails Error classes in your Rails project.
Simply run this form the Rails Console:
puts Exception.descendants.sort_by(&:name)
A nifty one-liner (thanks to ActiveSupport) to list all the Rails Error classes in your Rails project.
Simply run this form the Rails Console:
puts Exception.descendants.sort_by(&:name)