*/
@Bean
public ErrorPageExceptionResolver errorPageExceptionResolver() {
// Any exception (except TodoNotFound) will be rendered throw: error.html
// TodoNotFound has a custom error page: 404.html
return new ErrorPageExceptionResolver()
.map(HttpStatus.NOT_FOUND, "404", TodoNotFoundException.class);
}