main
Last change
on this file since 2aea0fd was 2aea0fd, checked in by ElenaMoskova <elena.moskova99@…>, 4 months ago |
init commit Elena
|
-
Property mode
set to
100644
|
File size:
425 bytes
|
Line | |
---|
1 | namespace PostgreSqlDotnetCore.Controllers
|
---|
2 | {
|
---|
3 | using Microsoft.AspNetCore.Http;
|
---|
4 | using Microsoft.AspNetCore.Mvc;
|
---|
5 |
|
---|
6 | public class ErrorController : Controller
|
---|
7 | {
|
---|
8 | // GET: ErrorController
|
---|
9 | public IActionResult AccessDenied()
|
---|
10 | {
|
---|
11 | return View();
|
---|
12 | }
|
---|
13 | // GET: ErrorController
|
---|
14 | public IActionResult NotExist()
|
---|
15 | {
|
---|
16 | return View();
|
---|
17 | }
|
---|
18 |
|
---|
19 | }
|
---|
20 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.