Re: ExceptionHandler enhancement proposal

2008-09-17 Thread Allison Randal
Bob Rogers wrote: Yes, once we have the ability to have exception handlers only handle specific types of exceptions, then they'll allow all other types of exceptions to pass through. (Which means we won't end up with the infinite exception handler loops we currently get if

Re: ExceptionHandler enhancement proposal

2008-09-16 Thread Allison Randal
Stephen Weeks wrote: ExceptionHandler currently has a can_handle method that checks whether the EH has been disabled or not. I propose adding some attributes to store the minimum severity the EH will handle and the list of exception types the EH will handle, methods to set and get these

Re: ExceptionHandler enhancement proposal

2008-09-16 Thread Bob Rogers
From: Allison Randal [EMAIL PROTECTED] Date: Tue, 16 Sep 2008 22:51:29 +0200 Yes, once we have the ability to have exception handlers only handle specific types of exceptions, then they'll allow all other types of exceptions to pass through. (Which means we won't end up with the