File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/main/java/ru/mystamps/web Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -62,8 +62,8 @@ public ImageController getImageController() {
62
62
}
63
63
64
64
@ Bean
65
- public NotFoundErrorController getNotFoundErrorController () {
66
- return new NotFoundErrorController (servicesConfig .getSiteService ());
65
+ public ErrorController getErrorController () {
66
+ return new ErrorController (servicesConfig .getSiteService ());
67
67
}
68
68
69
69
@ Bean
Original file line number Diff line number Diff line change 36
36
37
37
@ Controller
38
38
@ RequiredArgsConstructor
39
- public class NotFoundErrorController {
40
- private static final Logger LOG = LoggerFactory .getLogger (NotFoundErrorController .class );
39
+ public class ErrorController {
40
+ private static final Logger LOG = LoggerFactory .getLogger (ErrorController .class );
41
41
42
42
private final SiteService siteService ;
43
43
You can’t perform that action at this time.
0 commit comments