I have multiple @ControllerAdvice classes configured in my project. One has a configuration limited to a specific package: ``` @ControllerAdvice("xyz.configuration") public class ExceptionMapper ``` A second one has a more broad configuration: ``` @ControllerAdvice public class GlobalExceptionHandler ``` With this setup, the ExceptionHandlerExceptionResolver picks the GlobalExceptionHandler over the ExceptionMapper. My expectation was for the more narrowly configured class to be picked before the broader one. Do you share this view, or do you think using @Order is the correct approach here?