mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 20:13:49 +00:00
17 lines
429 B
C#
17 lines
429 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace WebAPI.Controllers
|
|
{
|
|
[ApiController]
|
|
[ApiExplorerSettings(IgnoreApi = true)]
|
|
[Route("error")] // ← required
|
|
public class NotFoundController : ControllerBase
|
|
{
|
|
[HttpGet("404")] // ← required
|
|
public IActionResult Handle404()
|
|
{
|
|
return NotFound(new { message = "Route not found." });
|
|
}
|
|
}
|
|
}
|