<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" AutoEventWireup="true" CodeBehind="Error.aspx.cs" Inherits="ActiveRecordScaffolding.Views.Shared.Error" %>

Sorry, an error occurred while processing your request.

<% if (!ViewContext.HttpContext.IsCustomErrorEnabled) { %>

Exception details:

<% Stack exceptions = new Stack(); for (Exception ex = ViewData.Model.Exception; ex != null; ex = ex.InnerException) { exceptions.Push(ex); } foreach (Exception ex in exceptions) { %>
<%= Html.Encode(ex.GetType().FullName)%>: <%= Html.Encode(ex.Message)%>
<%= Html.Encode(ex.StackTrace)%>
<% } %>
<% } %>