yavsc/Yavsc/Views/Shared/Error.cshtml

12 lines
265 B
Text
Raw Normal View History

2016-05-17 18:22:18 +02:00
@model Exception
@{
ViewBag.Title = "Oops!";
}
<h1 class="text-danger">Oops! an error occurs</h1>
<h2 class="text-danger">An error occurred while processing your request.</h2>
@if (Model != null)
{
@Html.ValueFor(model => model.Message)
}