Exceptions or error codes - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T03:51:32Z http://stackoverflow.com/feeds/question/253314 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/253314/exceptions-or-error-codes 11 Exceptions or error codes smink 2008-10-31T12:24:57Z 2009-10-18T06:23:48Z <p>Yesterday I was having a heated debate with a coworker on what would be the preferred error reporting method. Mainly we were discussing the usage of exceptions or error codes for reporting errors between application layers or modules.</p> <p><strong>What rules do you use to decide if you throw exceptions or return error codes for error reporting?</strong></p> http://stackoverflow.com/questions/253314/exceptions-or-error-codes/253316#253316 14 Answer by smink for Exceptions or error codes smink 2008-10-31T12:25:55Z 2008-10-31T12:25:55Z <p>I normally prefer exceptions because they have more contextual information and can convey (when properly used) the error to the programmer in a more clear fashion.</p> <p>On the other hand error codes are more lightweight than exceptions but are harder to maintain and error checking can inadvertedly be omitted. They are harder to maintain because you have to keep a catalog with all error codes and then switch on the result to see what error was thrown. Error ranges can be of help here because if the only thing we are interested in is if we are in the presence of an error or not is simpler to check (with an HRESULT error code greater or equal to 0 is success and less than zero is failure). They can inadvertedly be ommitted because there is no programmatic forcing that the developer will check for error codes. On the other hand you cannot ignore exceptions.</p> <p>To resume I prefer exceptions over error codes in almost all situations.</p> http://stackoverflow.com/questions/253314/exceptions-or-error-codes/253325#253325 10 Answer by JamShady for Exceptions or error codes JamShady 2008-10-31T12:30:10Z 2008-10-31T12:30:10Z <p>I prefer exceptions because</p> <ul> <li>they interupt the flow of logic</li> <li>they benefit from class hierarchy which gives more features/functionality <li>when used properly can represent a wide range of errors (e.g. an InvalidMethodCallException is also a LogicException, as both occur when there's a bug in your code that should be detectable before runtime), and</li> <li>they can be used to enhance the error (i.e. a FileReadException class definition can then contain code to check whether the file exists, or is locked, etc)</li> </ul> http://stackoverflow.com/questions/253314/exceptions-or-error-codes/253326#253326 1 Answer by Gamecat for Exceptions or error codes Gamecat 2008-10-31T12:30:16Z 2008-10-31T12:30:16Z <p>In the past I joined the errorcode camp (did too much C programming). But now I have seen the light. </p> <p>Yes exceptions are a bit of a burden on the system. But they simplify the code, reducing the number of errors (and WTF's).</p> <p>So use exception but use them wise. And they will be your friend.</p> <p>As a side note. I have learned to document which exception can be thrown by which method. Unfortunately this is not required by most languages. But it increases the chance of handling the right exceptions at the right level.</p> http://stackoverflow.com/questions/253314/exceptions-or-error-codes/253345#253345 1 Answer by Paul Croarkin for Exceptions or error codes Paul Croarkin 2008-10-31T12:37:26Z 2008-10-31T12:37:26Z <p>Method signatures should communicate to you what the method does. Something like long errorCode = getErrorCode(); might be fine, but long errorCode = fetchRecord(); is confusing.</p> http://stackoverflow.com/questions/253314/exceptions-or-error-codes/253347#253347 3 Answer by maxam for Exceptions or error codes maxam 2008-10-31T12:39:41Z 2008-10-31T12:39:41Z <p>Error codes can be ignored (and often are!) by the callers of your functions. Exceptions at least force them to deal with the error in some way. Even if their version of dealing with it is to have an empty catch handler (sigh).</p> http://stackoverflow.com/questions/253314/exceptions-or-error-codes/253354#253354 -1 Answer by Omar Kooheji for Exceptions or error codes Omar Kooheji 2008-10-31T12:40:53Z 2008-10-31T12:40:53Z <p>Error codes also don't work when your method returns anything other than a numeric value...</p> http://stackoverflow.com/questions/253314/exceptions-or-error-codes/253365#253365 0 Answer by Jim C for Exceptions or error codes Jim C 2008-10-31T12:46:02Z 2008-10-31T12:46:02Z <p>For most applications, exceptions are better. The exception is when the software has to communicate with other devices. The domain I work in is industrial controls. Here errors codes are preferred and expected. So my answer is that it does depend on the situation.</p> http://stackoverflow.com/questions/253314/exceptions-or-error-codes/253370#253370 5 Answer by Pistos for Exceptions or error codes Pistos 2008-10-31T12:48:51Z 2008-10-31T12:48:51Z <p>Exceptions over error codes, no doubt about it. You get much of the same benefits from exceptions as you do with error codes, but also much more, without the shortcomings of error codes. The only knock on exceptions is that it is slightly more overhead; but in this day and age, that overhead should be considered negligible for nearly all applications.</p> <p>Here are some articles discussing, comparing and contrasting the two techniques:</p> <ul> <li><a href="http://www.perl.com/pub/a/2002/11/14/exception.html" rel="nofollow">Object Oriented Exception Handling in Perl</a></li> <li><a href="http://nedbatchelder.com/text/exceptions-vs-status.html" rel="nofollow">Exceptions vs. status returns</a></li> </ul> <p>There are some good links in those that can give you further reading.</p> http://stackoverflow.com/questions/253314/exceptions-or-error-codes/253393#253393 9 Answer by Tom Dunham for Exceptions or error codes Tom Dunham 2008-10-31T13:03:17Z 2008-10-31T13:03:17Z <p>In high-level stuff, exceptions; in low-level stuff, error codes.</p> <p>The default behaviour of an exception is to unwind the stack and stop the program, if I'm writing a script an and I go for a key that's not in a dictionary it's probably an error, and I want the program to halt and let me know all about that. </p> <p>If, however, I'm writing a piece of code which I <em>must know</em> the behaviour of in every possible situation, then I want error codes. Otherwise I have to know every exception that can be thrown by every line in my function to know what it will do (Read <a href="http://rads.stackoverflow.com/amzn/click/0978739213" rel="nofollow">The Exception That Grounded an Airline</a> to get an idea of how tricky this is). It's tedious and hard to write code that reacts appropriately to every situation (including the unhappy ones), but that's because writing error-free code is tedious and hard, not because you're passing error codes.</p> <p>Both <a href="http://blogs.msdn.com/oldnewthing/archive/2005/01/14/352949.aspx" rel="nofollow">Raymond Chen</a> <a href="http://www.joelonsoftware.com/items/2003/10/13.html" rel="nofollow">and</a> <a href="http://www.joelonsoftware.com/articles/Wrong.html" rel="nofollow">Joel</a> have made some eloquent arguments against using exceptions for everything. </p> http://stackoverflow.com/questions/253314/exceptions-or-error-codes/253396#253396 1 Answer by Claudiu for Exceptions or error codes Claudiu 2008-10-31T13:03:58Z 2008-10-31T13:03:58Z <p>My reasoning would be if you are writing a low-level driver that really needs performance, then use error codes. But if you're using that code in a higher-level application and it can handle a bit of overhead, then wrap that code with an interface which checks those error codes and raises exceptions.</p> <p>In all other cases, exceptions are probably the way to go.</p> http://stackoverflow.com/questions/253314/exceptions-or-error-codes/253533#253533 2 Answer by sakana for Exceptions or error codes sakana 2008-10-31T13:50:21Z 2008-10-31T13:56:38Z <p>My approach is that we can use both, i.e. Exceptions and Errors codes at the same time. </p> <p>I'm used to define several types of Exceptions (ex: DataValidationException or ProcessInterruptExcepion) and inside each exception define a more detailed description of each problem.</p> <p>A Simple Example in Java:</p> <pre><code>public class DataValidationException extends Exception { private DataValidation error; /** * */ DataValidationException(DataValidation dataValidation) { super(); this.error = dataValidation; } } enum DataValidation{ TOO_SMALL(1,"The input is too small"), TOO_LARGE(2,"The input is too large"); private DataValidation(int code, String input) { this.input = input; this.code = code; } private String input; private int code; } </code></pre> <p>In this way i use Exceptions to define category errors, and error codes to define more detailed info about the problem.</p> http://stackoverflow.com/questions/253314/exceptions-or-error-codes/253748#253748 0 Answer by jrbushell for Exceptions or error codes jrbushell 2008-10-31T14:38:48Z 2008-10-31T14:38:48Z <p>I may be sitting on the fence here, but...</p> <ol> <li>It depends on the language.</li> <li>Whichever model you choose, be consistent about how you use it.</li> </ol> <p>In Python, use of exceptions is standard practice, and I'm quite happy to define my own exceptions. In C you don't have exceptions at all.</p> <p>In C++ (in the STL at least), exceptions are typically only thrown for truly exceptional errors (I virtually never see them myself). I see no reason to do anything different in my own code. Yes it's easy to ignore return values, but C++ doesn't force you to catch exceptions either. I think you just have to get into the habit of doing it.</p> <p>The code base I work on is mostly C++ and we use error codes almost everywhere, but there's one module that raises exceptions for any error, including very unexceptional ones, and all the code that uses that module is pretty horrible. But that might just be because we've mixed exceptions and error codes. The code that consistently uses error codes is much easier to work with. If our code consistently used exceptions, maybe it wouldn't be as bad. Mixing the two doesn't seem to work so well.</p> http://stackoverflow.com/questions/253314/exceptions-or-error-codes/253775#253775 0 Answer by Phil Nash for Exceptions or error codes Phil Nash 2008-10-31T14:47:02Z 2008-10-31T14:47:02Z <p>Exceptions are for <em>exceptional</em> circumstances - ie, when they are not part of the normal flow of the code. </p> <p>It's quite legitimate to mix Exceptions and error codes, where error codes represent the status of something, rather than an error in the running of the code per se (e.g. checking the return code from a child process).</p> <p>But when an exceptional circumstance occurs I believe Exceptions are the most expressive model.</p> <p>There are cases where you might prefer, or have, to use error codes in place of Exceptions, and these have been adequately covered already (other than other obvious constrains such as compiler support).</p> <p>But going in the other direction, using Exceptions allows you to build even higher level abstractions to your error handling, that can make your code even more expressive and natural. I would highly recommend reading this excellent, yet underrated, article by C++ expert Andrei Alexandrescu on the subject of what he calls, "Enforcements": <a href="http://www.ddj.com/cpp/184403864" rel="nofollow">http://www.ddj.com/cpp/184403864</a>. Although it's a C++ article the principles are generally applicable, and I have translated the enforcements concept to C# quite successfully.</p> http://stackoverflow.com/questions/253314/exceptions-or-error-codes/254073#254073 0 Answer by Charles Bretana for Exceptions or error codes Charles Bretana 2008-10-31T16:16:40Z 2009-10-18T06:23:48Z <p>I would never mix the two models.. it's too hard to convert from one to the other as you move from one part of the stack which is using error codes, to a higher piece that is using exceptions.</p> <p>Exceptions are for "anything that stops or inhibits the method or subroutine from doing what you asked it to do" ... NOT to pass messages back abot irregularities or unusual circumstances, or the state of the system.. etc. Use return values or by reference (or out) parameters for that.</p> <p>Exceptions allow methods to be written (and utilized) with semantics that are dependant on the method's function, i.e. a method that returns an Employeee object or List of Employees can be typed to do just that, and you can utilize it by calling. </p> <pre><code>Employee EmpOfMonth = GetEmployeeOfTheMonth(); </code></pre> <p>With error codes, all methods return an error code, so, for those that need to return something else to be used by the calling code, you have to pass a reference variable to be populated with that data, and test the return value for the error code, and handle it, on every function or method call.</p> <pre><code>Employee EmpOfMonth; if (getEmployeeOfTheMonth(ref EmpOfMonth) == ERROR) // code to Handle the error here </code></pre> <p>If you code so that each method does one and only one simple thing, then you should throw an exception whenever the method cannot accomplish the method's desired objective. Exceptions are much richer and easier to use in this way than error codes. Your code is much cleaner - The standard flow of the "normal" code path can be devoted strictly to the case where the method IS able to accomplish what you wanted it to do... And then the code to clean up, or handle the "exceptional" circumstances when something bad happens thar prevents the method from completing successfully can be siloed away from the normal code. Additionally, if you can't handle the exception where it occurred, and must pass it up the stack to a UI, (or worse, across the wire from a mid-tier component to a UI), then with exception model, you don;t need to code every intervening method in your stack to recognize and pass the exception up the stack... The exception model does this for you automagically.... With error codes, this piece of the puzzle can get onerous very rapidly.</p> http://stackoverflow.com/questions/253314/exceptions-or-error-codes/254693#254693 0 Answer by Eclipse for Exceptions or error codes Eclipse 2008-10-31T19:42:58Z 2008-10-31T19:42:58Z <p>Since I work with C++, and have RAII to make them safe to use, I use exceptions almost exclusively. It pulls error handling out of the normal program flow and makes the intent more clear. </p> <p>I do leave exceptions for exceptional circumstances though. If I'm expecting that a certain error is going to happen a lot I'll check that the operation will succeed before performing it, or call a version of the function that uses error codes instead (Like <code>TryParse()</code>)</p>