vote up 38 vote down star
12

I have exceptions created for every condition that my application does not expect. UserNameNotValidException, PasswordNotCorrectException etc.

However I was told I should not create exceptions for those conditions. In my UML those ARE exceptions to the main flow, so why should it not be an exception?

Any guidance or best practices for creating exceptions?

flag
show 2 more comments

33 Answers

prev 1 2
vote up 0 vote down

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

  1. IO is already very slow, so the overhead of an exception is comparatively low.
  2. 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.

link|flag
vote up 0 vote down

I have philosophical problems with the use of exceptions. Basically, you are expecting a specific scenario to occur, but rather than handling it explicitly you are pushing the problem off to be handled "elsewhere." And where that "elsewhere" is can be anyone's guess.

link|flag
vote up 0 vote down

Create new exceptions when you'd like to express two error states or more in your return value.

link|flag
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.