aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/action_dispatch/middleware/templates/rescues/template_error.erb
blob: 02fa18211d8c68ae55262752e3a24f1d971e990f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<h1>
  <%=h @exception.original_exception.class.to_s %> in
  <%=h @request.parameters["controller"].capitalize if @request.parameters["controller"]%>#<%=h @request.parameters["action"] %>
</h1>

<p>
  Showing <i><%=h @exception.file_name %></i> where line <b>#<%=h @exception.line_number %></b> raised:
  <pre><code><%=h @exception.message %></code></pre>
</p>

<p>Extracted source (around line <b>#<%=h @exception.line_number %></b>):
<pre><code><%=h @exception.source_extract %></code></pre></p>

<p><%=h @exception.sub_template_message %></p>

<% @real_exception = @exception
   @exception = @exception.original_exception || @exception %>
<%= render :file => "rescues/_trace.erb" %>
<% @exception = @real_exception %>

<%= render :file => "rescues/_request_and_response.erb" %>