I have been re-factoring some Java code lately... I have found that there were many RuntimeExceptions being thrown (i.e. unchecked exceptions). I have created my own checked exception and replaced each instance of these RuntimeExceptions with my own exception. Then, this forced me to check the exceptions.
With that said, I find checked exceptions better because another developer will make sure to handle the exceptions... Instead of the program just eating the exception without displaying anything to the user.
I have read many articles on unchecked vs. checked exceptions.. However, I still feel like I checked exceptions more because it reduces human error.
How poor of programming is it too mainly use checked exceptions? Has anyone else felt like they like checked exceptions more than unchecked exceptions?
my recommendation, although different people will have different opinions about this, is to: