Files
hamann-ausgabe-core/HaWeb/Controllers/ErrorController.cs
2022-06-04 02:42:01 +02:00

13 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();
}
}