Skip to content

Commit

Permalink
DATAREST-1031 - Fixed setup of ExceptionHandlerExceptionResolver.
Browse files Browse the repository at this point in the history
Fixed the setup of our custom ExceptionHandlerExceptionResolver to conclude with a call to afterPropertiesSet() to make sure it's properly initialized.
  • Loading branch information
odrotbohm committed Jun 9, 2017
1 parent d1b59f8 commit bc5a265
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -683,6 +683,8 @@ public void extendHandlerExceptionResolvers(List<HandlerExceptionResolver> excep

configurerDelegate.configureExceptionHandlerExceptionResolver(er);

er.afterPropertiesSet();

exceptionResolvers.add(0, er);
}

Expand Down

0 comments on commit bc5a265

Please sign in to comment.