mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-29 17:25:32 +00:00
13 lines
252 B
C#
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();
|
|
}
|
|
} |