method
    
    rescue_with_handler
 
  rescue_with_handler(exception)
  public
  
    Hide source    
    
      
  
# File actionpack/lib/action_controller/metal/rescue.rb, line 9 def rescue_with_handler(exception) if (exception.respond_to?(:original_exception) && (orig_exception = exception.original_exception) && handler_for_rescue(orig_exception)) exception = orig_exception end super(exception) end

 RSpec
RSpec Ruby on Rails
Ruby on Rails Ruby
Ruby 
   
    
     
   
    
    
     
  