A common pattern in python is to catch an error in an upstream module and re-raise that error as something more useful.

try:
    config_file = open('config.ini', 'r')
except IOError:
    raise ConfigError('Give me my config, user!')

This will generate a stack trace of the form

Traceback (most recent call last):
  File "<stdin>", line 4, in <module>
__main__.ConfigError: Give me my config, user!

Is there any way to access the wrapped exception in order to generate a stack trace more like this?

Traceback (most recent call last):
  File "<stdin>", line 2, in <module>
__builtin__.IOError: File Does not exist.
Exception wrapped by:
  File "<stdin>", line 4, in <module>
__main__.ConfigError: Give me my config, user!

EDIT:

The problem i'm trying to defeat is that some 3rd party code can wrap exceptions up to 3 times and I want to be able to determine the root cause, i.e. a generic way to inspect the exception stack and determine the root cause of an exception without having to add any extra code to 3rd party modules.

link|improve this question

50% accept rate
does sys.last_traceback help at all? – Joel Cornett Jan 25 at 3:26
also maybe check out the python traceback module – Joel Cornett Jan 25 at 3:27
Sorry, this is one of those annoying questions, but... why? – senderle Jan 25 at 3:27
I wonder if there's a way to do this without explicitly going to the exception block? I can print an exception message one at a time... but is there a better way? – Yuji Tomita Jan 25 at 6:39
@senderle "some 3rd party code can wrap exceptions up to 3 times and I want to be able to determine the root cause" – Thomas Jan 27 at 0:36
feedback

3 Answers

up vote 2 down vote accepted

This is known as Exception Chaining and is suported in Python 3.

PEP 3134: http://www.python.org/dev/peps/pep-3134/

In Python 2, the old exception is lost when you raise a new one, unless you save it in the except block.

link|improve this answer
Very cool! Thank you for sharing – Yuji Tomita Jan 25 at 21:55
feedback

Use the traceback module. It will allow you to access the most recent traceback and store it in a string. For example,

import traceback
try:
    config_file = open('config.ini', 'r')
except OSError:
    tb = traceback.format_exc()
    raise ConfigError('Give me my config, user!',tb)

The "nested" traceback will be stored in tb and passed to ConfigError, where you can work with it however you want.

link|improve this answer
Also, the result of format_exc() (that is stored in tb) is just a string, which consists of exactly the same text that would be printed out if it were not in a try/except block. – Magnesium Jan 25 at 3:35
To answer your edit, as far as I know, the format_exc function will output all available information in the traceback. If a 3rd party module "suppresses" some information in a try/except loop, you won't be able to retrieve it without modifying that particular try/except loop. – Magnesium Jan 25 at 8:32
feedback

If you want to reraise a caught exception, simply use raise. In an example:

try:
    unbound
except NameError:
    print "NameError was caught"
    raise
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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