Files
hamann-ausgabe-core/HaWeb/Controllers/ErrorController.cs
2022-05-17 01:21:10 +02:00

14 lines
252 B
C#

using System.Diagnostics;
using Microsoft.AspNetCore.Mvc;
using HaWeb.Models;
namespace HaWeb.Controllers;
public class ErrorController : Controller
{
[Route("Error404/")]
public IActionResult ErrorNotFound() {
return View();
}
}