14 lines
439 B
C#
14 lines
439 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace Nop.Web.Controllers;
|
|
|
|
//do not inherit it from BasePublicController. otherwise a lot of extra action filters will be called
|
|
//they can create guest account(s), etc
|
|
public partial class ErrorController : Controller
|
|
{
|
|
public virtual IActionResult Error()
|
|
{
|
|
Response.StatusCode = StatusCodes.Status500InternalServerError;
|
|
return File("ErrorPage.htm", "text/html");
|
|
}
|
|
} |