Antwort When should you not catch exceptions? Weitere Antworten – When not to use exceptions
The best advice for deciding when to use exceptions is to throw exceptions only when a function fails to meet its specification. Not for asynchronous events. Not for benign error conditions. Not for flow–of–control. You're not forced to use exceptions. New exceptions, old code. Do not use try-catch unless you actually can handle specific exceptions. […]