PTMagic/Monitor/Pages/Error.cshtml

21 lines
438 B
Plaintext
Raw Normal View History

2018-05-22 10:11:50 +02:00
@page
@model ErrorModel
@{
Layout = null;
ViewData["Title"] = "Error";
}
<h1 class="text-danger">Error.</h1>
<h2 class="text-danger">An error occurred while processing your request.</h2>
@if (Model.ShowRequestId)
{
<p>
<strong>Request ID:</strong> <code>@Model.RequestId</code>
</p>
}
@if (Model.Exception != null) {
<h2>@Model.Exception.Error.Message</h2>
<p>@Model.Exception.Error.StackTrace</p>
}