Exception chaining, or exception wrapping, is an object-oriented programming technique of handling exceptions by re-throwing a caught exception after wrapping it inside a new exception. The original exception is saved as a property (such as cause) of the new exception. The idea is that a method should throw exceptions defined at the same abstraction level as the method itself, but without discarding information from the lower levels.
For example, a method to play a movie file might handle exceptions in reading the file by re-throwing them inside an exception of movie playing. The user interface might display the time the error occurred extracted from the movie playing exception (movieplayingexception.time
) and the name of the file extracted from the file reading exception (movieplayingexception.cause.filename
).
Throwing the right kind of exceptions is particularly enforced by checked exceptions in the Java programming language, and starting with language version 1.4 all exceptions support chaining.
In runtime engine environments such as Java or .Net there exist tools that attach to the runtime engine and everytime that an exception of interest occurs they record debugging information that existed in memory at the time the exception was thrown (stack and heap values). These tools are called Exception Interception or Error Interception tools and they provide 'root-cause' information for exceptions in Java programs that run in production, testing or development environments.
References
- Exceptional practices by Brian Goetz at javaworld.com