Например, будет ли он пытаться сопоставить CustomException1, затем CustomException2, затем IllegalArgumentException и, наконец, Exception?
exception(CustomException1.class, (exception, request, response) -> {
// Handle the exception here
});
exception(CustomException2.class, (exception, request, response) -> {
// Handle the exception here
});
exception(IllegalArgumentException.class, (exception, request, response) -> {
// Handle the exception here
});
exception(Exception.class, (exception, request, response) -> {
// Handle the exception here
});
Спасибо за любую помощь.