aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_controller/templates/rescues/routing_error.rhtml
blob: bf7dcb232aa24914d1808f3844564de3927d3a33 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
<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 %>