Skip to content

Commit

Permalink
typo in spring configuration for http 500 errors
Browse files Browse the repository at this point in the history
  • Loading branch information
1azyman committed Oct 26, 2017
1 parent dc4c8d0 commit 1f1c849
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -184,7 +184,7 @@ public void customize(ConfigurableEmbeddedServletContainer container) {
"/error/404"));
container.addErrorPages(new ErrorPage(HttpStatus.GONE,
"/error/410"));
container.addErrorPages(new ErrorPage(HttpStatus.UNAUTHORIZED,
container.addErrorPages(new ErrorPage(HttpStatus.INTERNAL_SERVER_ERROR,
"/error"));
}
}
Expand Down

0 comments on commit 1f1c849

Please sign in to comment.