18 lines
		
	
	
		
			496 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			496 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"><%= Html.Encode(Model.Message) %></code></p>
 | 
						|
 | 
						|
<pre><%= Model.StackTrace %></pre>
 | 
						|
 | 
						|
<hr />
 | 
						|
 | 
						|
<div style="margin-left: 20px">
 | 
						|
 | 
						|
<% 
 | 
						|
	if (Model.InnerException != null) {
 | 
						|
		Html.RenderPartial("RecursiveExceptionView", Model.InnerException);	
 | 
						|
	}
 | 
						|
%>
 | 
						|
 | 
						|
</div> |