vote up 3 vote down star
1

Is it a good practice to use exception for managing cases that are not errors ?

Like in JavaScript and Python that manage the StopIteration case in generators (yield keyword).

flag

77% accept rate
should be community wiki. – SilentGhost Jul 21 at 14:50
Apparently no answer touches JavaScript's and Python's use of exceptions to break the execution flow. – Ionut G. Stan Jul 21 at 14:57

9 Answers

vote up 11 vote down

I would say No, spontaneously. Exceptions should be used for exceptional states, not for regular program flow.

link|flag
3  
Sometimes it is not so easy to distinguish between exceptional and regular cases. – Soubok Jul 21 at 14:52
Care to give an example? – tomfanning Jul 21 at 14:58
@Suobok I'm at a loss as to when the distinction would be difficult. Can you give an example of a case were the lines are blurred between regular case and exceptional case? – Colin Mackay Jul 21 at 15:19
Sorry - I don't see anything in that example that would justify using an exception. Perhaps it is fine in Python, I wouldn't do it in C#. – Colin Mackay Jul 21 at 15:21
1  
@Soubok: Exceptional for a human, but not a computer ;o) – Fredrik Mörk Jul 21 at 16:05
show 4 more comments
vote up 10 vote down

Not usually, no. ASP.NET uses this for Response.Redirect - actually aborting the thread, then catching the exception and resetting it. It's very nasty, but it does let you basically "quit" the request without every level of the stack being aware that it needs to return immediately.

Try to avoid wherever possible. If you think you absolutely have to do it, consult two colleagues, present the design and ask if they can do it more cleanly somehow. If none of you can think of a better way round it, do it with extensive documentation.

link|flag
1  
Perhaps sometimes throwing an exception is clearer that a lot of nested 'return' statements ? – Soubok Jul 21 at 15:09
@Soubok: Hmm... Very rarely. It would be a pretty "exceptional" situation, to be honest. I'd really try to avoid it in all normal situations. – Jon Skeet Jul 21 at 16:08
Downvoter: Care to give a reason? – Jon Skeet Jul 21 at 16:09
vote up 5 vote down

It depends on the language. Each language has it's own design and idioms. For most languages exceptions should be exceptional.

In languages like C++, Java and C# it is very bad form to use exceptions for anything else.

In Python, exceptions are used more frequently for things like the end of an iteration. There is much more of a model of try to do what you want and handle the exceptions later rather than validating input ("Easier to Ask Forgiveness than Permission"). For example if you want to open a file, in Java you might check if it exists first and then open it and check to see if you have a valid stream. In Python you would open it and use it. If that fails you handle the exception.

From the wikipedia article:

Python style calls for the use of exceptions whenever an error condition might arise. Rather than testing for access to a file or resource before actually using it, it is conventional in Python to just go ahead and try to use it, catching the exception if access is rejected.

Exceptions can also be used as a more general means of non-local transfer of control, even when an error is not at issue. For instance, the Mailman mailing list software, written in Python, uses exceptions to jump out of deeply-nested message-handling logic when a decision has been made to reject a message or hold it for moderator approval.

link|flag
vote up 3 vote down

As the name says exceptions should only be used in Exceptional cases. I would not use it for managing non error cases.

link|flag
vote up 2 vote down

No.

Exceptions should only be used for exceptional situations (as the name says). That means: errors.

  • “Uh, I can’t find this file.” - Exception!
  • “Uh, I can’t divide by 0.” - Exception!
  • “Uh, I can’t get no memory.” - Exception!
  • “The result is 2.5." - No exception!
link|flag
2  
Sometimes, not being able to find a file isn't exceptional either. Especially if the file is user input. Now, if it's a file you NEED and if it's not in one place, it's a sign of problems, that's an Exception. – Thomas Owens Jul 21 at 14:57
Deep in the bowels of your application it still is an exception, of course you have to beautify it before showing it to the user. – Bombe Jul 22 at 6:54
vote up 1 vote down

No.

Generally the system is designed to make non-exception cases fast, while accepting exceptional cases take a performance hit. Thus a lot of exceptions being thrown/caught will be slower than conventional constructs.

It also makes analysis and understanding the code harder, and most code spends most of its time in maintenance.

link|flag
Just note that Python and JavaScript are using the StopIteration exception to manage the end of a generator because it is cheaper than calling a method at each iteration to know if it is the end. – Soubok Jul 21 at 14:58
"Generally" can have exceptions (pun intended). – Richard Jul 21 at 15:02
1  
... and that platform implementers can work to different rules (after all they can modify the platform's dynamics to suit the solution). – Richard Jul 21 at 15:03
vote up 1 vote down

It's a very questionable practice. If you feel it's the best thing for your situation regardless, make sure to document and comment it thoroughly to keep your WTF/m down.

link|flag
vote up 1 vote down

I believe that sometimes exceptions are useful for building DSLs. I know, it sounds weird, but as many languages don't have the features Ruby has (the return keyword is optional because the result of the last evaluated expression is returned), we use what we can.

For example, I recently tried to build a little JavaScript testing framework, and I wanted a way for the framework users to be able to say:

skip();
pending("pending message");
fail("failure message");

instead of:

return skip();
return pending("pending message");
return fail("failure message");

These functions would be library functions which throw exceptions like a SkipTest exception for example. The only recommended place to use them is inside test methods. These test methods are always executed in a try/catch block where every type of exception is treated and, depending on the exception the framework takes the appropriate step.

This is an example where I've used Exceptions for control flow.

Here's a small example:

$.it("should offer means to explicitly mark a spec as failed", function() {
    $.fail("this spec must fail");
});
link|flag
vote up -1 vote down

I've seen Python code that uses exceptions to test if input is of the correct type

try:
   n = int(n1)
except (ValueError, TypeError):
   # return an eror

Is this poor form, or does it qualify as an "exceptional case"?

link|flag
You should start a new question for this (if it wasn't asked before), not post it as an answer to an old question. The "Ask Question" button is in the top right. – sth Aug 28 at 4:05
it's already there: stackoverflow.com/questions/1152541/… – Bartosz Radaczyński Oct 14 at 12:10

Your Answer

Get an OpenID
or

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