<%= h @exception.message %>
<% unless @exception.failures.empty? %>
Failure reasons:
<% @exception.failures.each do |route, reason| %>
<%= route.inspect.delete('\\') %>
failed because <%= reason.downcase %>
<% end %>
<% end %>
<%= render template: "rescues/_trace" %>
<% if @routes_inspector %>
Routes
Routes match in priority from top to bottom
<%= @routes_inspector.format(ActionDispatch::Routing::HtmlTableFormatter.new(self)) %>
<% end %>