Details
-
Type:
Bug
-
Status: Resolved (View Workflow)
-
Priority:
Minor
-
Resolution: Done
-
Affects Version/s: 3.0.0.Beta3
-
Fix Version/s: 3.0.0.CR1
-
Component/s: None
-
Labels:None
-
Estimated Difficulty:Low
-
Git Pull Request:
Description
When rethrowing an exception from a catch handled method like this:
public void printExceptionMessage(@Handles CaughtException<Throwable> event) { |
log.info("Something bad happened: " + event.getException().getMessage()); |
event.rethrow(); //LIKE THIS |
}
|
CatchIntegrationHandler loses track of an exception. so there's no JSF Error page but a page 500 with the stacktrace page.
I wrote a try/catch block to handle event.rethrow inside the catch handled method.