Exceptions are not the only way to handle errors. There are several different types of errors that should be handled through different mechanisms.
Internal logic error:
If a process is in an invalid state due to a bug in the same process, use assertions to kill the process. Do not try to recover from bugs in your own code and within your own process, as the only proper response is to file a bug, and generally there is no way to recover safely anyway.
Note that Java (stupidly) uses exceptions to implement assertions, but you shouldn't think about them as exceptions or ever try to catch them. Also note that in most languages assertions are compiled out of release builds and are not considered part of the logic of the application.
Input errors (or external logic errors):
Any input from external sources that comes into your process should be validated, and perhaps filtered. Validation can be a predicate i.e. IsValid(my_inputs).
Generally, if you can check ahead of time to see if an operation can succeed, then that is the preferred. Exceptions are for those conditions when it is impossible to check for success ahead of time.
Frequently occurring error conditions:
Should always be dealt with by checking for an error condition with if statements, not try, except. Exceptions are slow. Also, an error condition that is going to occur frequently the programmer will not likely forget to check.
IO failure:
Sometimes an operation involving IO will fail, e.g. a file will not be found, a connection to a database will be lost because the database died, etc. This is a good candidate for an exception because
- IO is already very slow, so the overhead of an exception is comparatively low.
- There no way to check ahead of time, and the user is likely to forget to check whether his io object has been put into a bad state after every single io operation he performs.
So, in essence, if your particular operation isn't doing any kind of IO, don't throw an exception.
An exception to the rule of exceptions:
Constructors can only report errors with exceptions. That said, you should try to do very little work in a constructor (just pass in values and assign them to instance variables). Consider using builders or factories for objects that have complicated constructions processes.