fightinjoe / fightinjoe-merb-blog

Personal blog software written with Merb

fightinjoe-merb-blog / lib / merb_exceptions_ext.rb
100644 9 lines (9 sloc) 0.223 kb
1
2
3
4
5
6
7
8
9
module Merb
  module ControllerExceptions
    class InternalServerError < Merb::ControllerExceptions::ServerError
      def name
        @exception ? @exception.class.name.to_s.snake_case : super
      end
    end
  end
end