18 lines
483 B
Plaintext
18 lines
483 B
Plaintext
<%@ Control Language="C#" Inherits="System.Web.Mvc.ViewUserControl<Exception>" %>
|
|
<%@ Import Namespace="Portoa.Util" %>
|
|
|
|
<p class="exception-message"><%= Model.GetType().GetFriendlyName(false) %>: <code style="white-space: pre"><%: Model.Message %></code></p>
|
|
|
|
<pre><%: Model.StackTrace %></pre>
|
|
|
|
<hr />
|
|
|
|
<div style="margin-left: 20px">
|
|
|
|
<%
|
|
if (Model.InnerException != null) {
|
|
Html.RenderPartial("RecursiveExceptionView", Model.InnerException);
|
|
}
|
|
%>
|
|
|
|
</div> |