1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-19 16:01:46 +02:00
Radarr/NzbDrone.Web/Views/Shared/Error.aspx

14 lines
485 B
Plaintext
Raw Normal View History

2010-09-23 05:19:47 +02:00
<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<System.Web.Mvc.HandleErrorInfo>" %>
<%@ Import Namespace="NLog" %>
2010-09-23 05:19:47 +02:00
<asp:Content ID="errorTitle" ContentPlaceHolderID="TitleContent" runat="server">
EPIC FAIL!!!
2010-09-23 05:19:47 +02:00
</asp:Content>
<asp:Content ID="errorContent" ContentPlaceHolderID="MainContent" runat="server">
<h2>
<%:Model.Exception.Message%>
2010-09-23 05:19:47 +02:00
</h2>
<br />
<%:Model.Exception.ToString()%>
2010-09-23 05:19:47 +02:00
</asp:Content>