show/hide this revision's text 3 added 281 characters in body

One basic thing is to reserve exceptions for exceptional situations only. Don't use them for flow control. For instance, "file not found" should not be an exception, it should be an error code or return value (unless the file is something that must exist, e.g. a configuration file). But if the a file suddenly disappears while you're processing it, then throwing an exception is a good choice.

When exceptions are used sparingly, you don't need to turn your code into a try-catch -spaghetti in order to avoid receiving incomprehensible-in-the-context exceptions from the deeper layers.

show/hide this revision's text 2 added 25 characters in body

One basic thing is to reserve exceptions for exceptional situations only. Don't use them for flow control. For instance, "file not found" should not be an exception, but it should be an error code or return value. But if the file suddenly disappears while you're processing it, then throwing an exception is a good choice.

show/hide this revision's text 1

One basic thing is to reserve exceptions for exceptional situations only. Don't use them for flow control. For instance, "file not found" should not be an exception, but an error code. But if the file suddenly disappears while you're processing it, then throwing an exception is a good choice.