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).
|
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).
|
||||
|
|
|
I would say No, spontaneously. Exceptions should be used for exceptional states, not for regular program flow. |
||||||||||||||
|
|
|
Not usually, no. ASP.NET uses this for 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. |
||||||||
|
|
|
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:
|
|||
|
|
|
|
As the name says exceptions should only be used in Exceptional cases. I would not use it for managing non error cases. |
||
|
|
|
|
No. Exceptions should only be used for exceptional situations (as the name says). That means: errors.
|
||||||
|
|
|
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. |
||||||||
|
|
|
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. |
||
|
|
|
|
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:
instead of:
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:
|
||
|
|
|
|
I've seen Python code that uses exceptions to test if input is of the correct type
Is this poor form, or does it qualify as an "exceptional case"? |
||||
|