Sha256: 840479b7baf6223f7916258e057bfe3574c05b4eced9ffab8cebf90526428c56
Contents?: true
Size: 794 Bytes
Versions: 1
Compression:
Stored size: 794 Bytes
Contents
<h3> Exception: <%=exception.class.name %> </h3> <table> <tr> <th style="text-align: left;"> Exception </th> <td> <code><%=exception.class.name %></code> </td> </tr> <tr> <th style="text-align: left;"> Timestamp </th> <td> <%= timestamp %> </td> </tr> <% if !exception.message.nil? && exception.message != '' %> <tr> <th style="text-align: left;"> Message </th> <td> <%= exception.message %> </td> </tr> <% end %> </table> <% if exception.backtrace %> <h3> Backtrace </h3> <pre style="font-family:monospace;"> <% exception.backtrace.each do |line| %> <%= line %> <% end %> </pre> <% end %> <% if log_entries.any? %> <h3> Log </h3> <pre style="font-family:monospace;"> <% log_entries.each do |entry| %> <%= entry.to_s %> <% end %> </pre> <% end %>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
dreamcatcher-0.0.1 | lib/dreamcatcher/templates/generic_exception.html.erb |