11 lines
404 B
Plaintext
11 lines
404 B
Plaintext
<% if CurrentUser.user.try(:is_builder?) && @exception.present? %>
|
|
<h1><%= @exception.class.to_s %> exception raised</h1>
|
|
|
|
<p><%= @exception.message.dup.force_encoding("utf-8") %></p>
|
|
<%= render "static/backtrace", backtrace: @exception.backtrace %>
|
|
<% elsif @error_message %>
|
|
<p><%= @error_message %></p>
|
|
<% else %>
|
|
<p><%= @exception.message.dup.force_encoding("utf-8") %></p>
|
|
<% end %>
|