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>
|
2019-11-15 04:18:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@if (Model.Exception != null) {
|
|
|
|
<h2>@Model.Exception.Error.Message</h2>
|
|
|
|
<p>@Model.Exception.Error.StackTrace</p>
|
2018-05-22 10:11:50 +02:00
|
|
|
}
|