class ExceptionThrower {
ExceptionThrower() throws Exception {
throw new Exception("");
}
}try {
new ExceptionThrower();
} catch(Exception e) {
}--
You received this message because you are subscribed to the Google Groups "SonarQube" group.
To unsubscribe from this group and stop receiving emails from it, send an email to sonarqube+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/sonarqube/2cbe25c6-f1f8-44c4-b3df-68b5e552718e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Senior Developer