blob: a357a7ba114792cf8affc1ad55b14e027135b202 (
plain) (
tree)
|
|
<h1>Routing Error</h1>
<p><pre><%=h @exception.message %></pre></p>
<% unless @exception.failures.empty? %>
<p>
<h2>Failure reasons:</h2>
<ol>
<% @exception.failures.each do |route, reason| %>
<li><code><%=h route.inspect.gsub('\\', '') %></code> failed because <%=h reason.downcase %></li>
<% end %>
</ol>
</p>
<% end %>
<%= render template: "rescues/_trace" %>
<h2>
Routes
</h2>
<p>
Routes match in priority from top to bottom
</p>
<p><pre><%= @routes %></pre></p>
|