Re: including the nested exception's traceback in new raised exception

2008-06-24 Thread Thomas Guettler
Graham Carlyle schrieb: > Hi > > There are a number of place in the django codebase that trap Exception > and then raise a new exception but only convert the original exception > to a string to indicate what went wrong. Its often necessary to see the > full traceback of the original exception to w

including the nested exception's traceback in new raised exception

2008-06-24 Thread Graham Carlyle
Hi There are a number of place in the django codebase that trap Exception and then raise a new exception but only convert the original exception to a string to indicate what went wrong. Its often necessary to see the full traceback of the original exception to work out whats going wrong. The one