Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
This is precisely why I think try/catch blocks are the most overrated programming concept ever. They make it far too convenient for programmers to ignore errors. And they are annoying and counterintuitive to write. Making you even more eagerly want to just catch all exceptions and be done with it.
Related Rants
Heard Java 7 provides catching multiple exceptions in single catch block ! hmm .. why need when I got this 😎😁
try {
// do something...
} catch (Exception e){
//log it ..
}
undefined
thuglife
exception
java