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

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

  <%= render template: "rescues/_source" %>

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

  <%= render template: "rescues/_trace" %>
  <%= render template: "rescues/_request_and_response" %>
</div>