<% if defined?(exception) %>

<%= exception.class %> - '<%= exception.message %>'

<% last_line = false %> <% exception.backtrace.each do |line| %> <% ending = last_line && !line.include?(Rails.root.to_s) ? false : true %> <% break if !ending%> <% if ending %> <%= line %>
<% end %> <% last_line = line.include?(Rails.root.to_s) %> <% end %>

<% else %>

The launch url was invalid

Please try relaunching this application

<% end %>