Why Re-throw Exceptions? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-25T21:05:02Z http://stackoverflow.com/feeds/question/113565 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/113565/why-re-throw-exceptions 8 Why Re-throw Exceptions? tghoang 2008-09-22T07:11:16Z 2008-09-22T08:15:32Z <p>I've seen the following code many times:</p> <pre><code>try { ... // some code } catch (Exception ex) { ... // Do something throw new CustomException(ex); // or // throw; // or // throw ex; } </code></pre> <p>Can you please explain the purpose of re-throwing an exception? Is it following a pattern/best practice in exception handling? (I've read somewhere that it's called "Caller Inform" pattern?)</p> http://stackoverflow.com/questions/113565/why-re-throw-exceptions/113568#113568 0 Answer by lagerdalek for Why Re-throw Exceptions? lagerdalek 2008-09-22T07:13:00Z 2008-09-22T07:13:00Z <p>Until I started using the EntLib ExceptionBlock, I was using them to log errors before throwing them. Kind of nasty when you think I could have handled them at that point, but at the time it was better to have them fail nastily in UAT (after logging them) rather than cover a flow-on bug.</p> http://stackoverflow.com/questions/113565/why-re-throw-exceptions/113574#113574 0 Answer by Phil Wright for Why Re-throw Exceptions? Phil Wright 2008-09-22T07:14:18Z 2008-09-22T07:30:38Z <p>The application will most probably be catching those re-thrown exceptions higher up the call stack and so re-throwing them allows that higher up handler to intercept and process them as appropriate. It is quite common for application to have a top-level exception handler that logs or reports the expections.</p> <p>Another alternative is that the coder was lazy and instead of catching just the set of exceptions they want to handle they have caught everything and then re-thrown only the ones they cannot actually handle.</p> http://stackoverflow.com/questions/113565/why-re-throw-exceptions/113577#113577 18 Answer by Chris Jester-Young for Why Re-throw Exceptions? Chris Jester-Young 2008-09-22T07:15:12Z 2008-09-22T07:15:12Z <p>Rethrowing the same exception is useful if you want to, say, log the exception, but not handle it.</p> <p>Throwing a new exception that wraps the caught exception is good for abstraction. e.g., your library uses a third-party library that throws an exception that the clients of your library shouldn't know about. In that case, you wrap it into an exception type more native to your library, and throw that instead.</p> http://stackoverflow.com/questions/113565/why-re-throw-exceptions/113578#113578 1 Answer by Guvante for Why Re-throw Exceptions? Guvante 2008-09-22T07:15:13Z 2008-09-22T07:15:13Z <p>Generally the "Do Something" either involves better explaining the exception (For instance, wrapping it in another exception), or tracing information through a certain source.</p> <p>Another possibility is if the exception type is not enough information to know if an exception needs to be caught, in which case catching it an examining it will provide more information.</p> <p>This is not to say that method is used for purely good reasons, many times it is used when a developer thinks tracing information may be needed at some future point, in which case you get try {} catch {throw;} style, which is not helpful at all.</p> http://stackoverflow.com/questions/113565/why-re-throw-exceptions/113579#113579 1 Answer by Jon Limjap for Why Re-throw Exceptions? Jon Limjap 2008-09-22T07:15:14Z 2008-09-22T07:15:14Z <p>I think it depends on what you are trying to do with the exception.</p> <p>One good reason would be to log the error first in the catch, and then throw it up to the UI to generate a friendly error message with the option to see a more "advanced/detailed" view of the error, which contains the original error.</p> <p>Another approach is a "retry" approach, e.g., an error count is kept, and after a certain amount of retries that's the only time the error is sent up the stack (this is sometimes done for database access for database calls that timeout, or in accessing web services over slow networks).</p> <p>There will be a bunch of other reasons to do it though.</p> http://stackoverflow.com/questions/113565/why-re-throw-exceptions/113587#113587 -2 Answer by dimarzionist for Why Re-throw Exceptions? dimarzionist 2008-09-22T07:17:50Z 2008-09-22T07:17:50Z <p>THE MAIN REASON of re-throwing exceptions is to leave Call Stack untouched, so you can get more complete picture of what happens and calls sequence.</p> http://stackoverflow.com/questions/113565/why-re-throw-exceptions/113588#113588 1 Answer by tghoang for Why Re-throw Exceptions? tghoang 2008-09-22T07:17:52Z 2008-09-22T07:17:52Z <p>FYI, this is a related question about each type of re-throw: <a href="http://stackoverflow.com/questions/6891/performance-considerations-for-throwing-exceptions#6978">http://stackoverflow.com/questions/6891/performance-considerations-for-throwing-exceptions#6978</a></p> <p>My question focuses on "Why" we re-throw exceptions and its usage in application exception handling strategy.</p> http://stackoverflow.com/questions/113565/why-re-throw-exceptions/113614#113614 5 Answer by Greg Beech for Why Re-throw Exceptions? Greg Beech 2008-09-22T07:25:52Z 2008-09-22T07:25:52Z <p>You typically catch and re-throw for one of two reasons, depending on where the code sits architecturally within an application.</p> <p>At the core of an application you typically catch and re-throw to translate an exception into something more meaningful. For example if you're writing a data access layer and using custom error codes with SQL Server, you might translate SqlException into things like ObjectNotFoundException. This is useful because (a) it makes it easier for callers to handle specific types of exception, and (b) because it prevents implementation details of that layer such as the fact you're using SQL Server for persistence leaking into other layers, which allows you to change things in the future more easily.</p> <p>At boundaries of applications it's common to catch and re-throw without translating an exception so that you can log details of it, aiding in debugging and diagnosing live issues. Ideally you want to publish error somewhere that the operations team can easily monitor (e.g. the event log) as well as somewhere that gives context around where the exception happened in the control flow for developers (typically tracing).</p> http://stackoverflow.com/questions/113565/why-re-throw-exceptions/113615#113615 16 Answer by Davy Landman for Why Re-throw Exceptions? Davy Landman 2008-09-22T07:26:42Z 2008-09-22T08:15:32Z <p>Actually there is a difference between</p> <pre><code>throw new CustomException(ex); </code></pre> <p>and</p> <pre><code>throw; </code></pre> <p>The second will preserve the stack information.</p> <p>But sometimes you want to make the Exception more "friendly" to your application domain, instead of letting the DatabaseException reach your GUI, you'll raise your custom exception which contains the original exception.</p> <p>For instance:</p> <pre><code>try { } catch (SqlException ex) { switch (ex.Number) { case 17: case 4060: case 18456: throw new InvalidDatabaseConnectionException("The database does not exists or cannot be reached using the supplied connection settings.", ex); case 547: throw new CouldNotDeleteException("There is a another object still using this object, therefore it cannot be deleted.", ex); default: throw new UnexpectedDatabaseErrorException("There was an unexpected error from the database.", ex); } } </code></pre> http://stackoverflow.com/questions/113565/why-re-throw-exceptions/113630#113630 1 Answer by Rafał Dowgird for Why Re-throw Exceptions? Rafał Dowgird 2008-09-22T07:30:19Z 2008-09-22T07:30:19Z <p>I can think of the following reasons:</p> <ul> <li><p>Keeping the set of thrown exception types fixed, as part of the API, so that the callers only have to worry about the fixed set of exceptions. In Java, you are practically forced to do that, because of the checked exceptions mechanism.</p></li> <li><p>Adding some context information to the exception. For example, instead of letting the bare "record not found" pass through from the DB, you might want to catch it and add "... while processing order no XXX, looking for product YYY". </p></li> <li><p>Doing some cleanup - closing files, rolling back transactions, freeing some handles.</p></li> </ul> http://stackoverflow.com/questions/113565/why-re-throw-exceptions/113675#113675 6 Answer by RoadWarrior for Why Re-throw Exceptions? RoadWarrior 2008-09-22T07:44:16Z 2008-09-22T07:44:16Z <p>Sometimes you want to hide the implementation details of a method or improve the level of abstraction of a problem so that it’s more meaningful to the caller of a method. To do this, you can intercept the original exception and substitute a custom exception that’s better suited for explaining the problem.</p> <p>Take for example a method that loads the requested user’s details from a text file. The method assumes that a text file exists named with the user’s ID and a suffix of “.data”. When that file doesn’t actually exist, it doesn’t make much sense to throw a FileNotFoundException because the fact that each user’s details are stored in a text file is an implementation detail internal to the method. So this method could instead wrap the original exception in a custom exception with an explanatory message. </p> <p>Unlike the code you're shown, best practice is that the original exception should be kept by loading it as the InnerException property of your new exception. This means that a developer can still analyze the underlying problem if necessary.</p> <p>When you're creating a custom exception, here's a useful checklist:</p> <p>• Find a good name that conveys why the exception was thrown and make sure that the name ends with the word “Exception”.</p> <p>• Ensure that you implement the three standard exception constructors.</p> <p>• Ensure that you mark your exception with the Serializable attribute.</p> <p>• Ensure that you implement the deserialization constructor.</p> <p>• Add any custom exception properties that might help developers to understand and handle your exception better.</p> <p>• If you add any custom properties, make sure that you implement and override GetObjectData to serialize your custom properties.</p> <p>• If you add any custom properties, override the Message property so that you can add your properties to the standard exception message.</p> <p>• Remember to attach the original exception using the InnerException property of your custom exception.</p>