Record the laravel exception handling bug

Use an authentication listener to listen for an authentication event, throwing an httpResponseException in the authentication listener. When I logged in, the triggered authentication event found that throwing an httpResponseException in the authentication listener was not caught by the global exception handler. HttpResponseException can be caught by the global exception handler. Similarly, throwing an Exception in an authentication listener can be caught by the global Exception handler.