I would like to know, what\'s better or/and faster in general programming? Avoid the exception or wait for the exception?
Avoid the exception would be:
Exceptions are expensive - if you can test and avoid the exception, do so.
Exceptions should not be used for normal program flow.