Re: Identifying error-kit Throwables

2010-08-16 Thread Brian Marick
On Aug 16, 2010, at 10:56 AM, Chouser wrote: > If you *are* actually using continue or continue-with, I'd be very > interested to know your actual use cases. I thought I did, but as I wrote up the use case, I think I've convinced myself I was wrong. I'll let you know if I change my mind again.

Re: Identifying error-kit Throwables

2010-08-16 Thread Chouser
On Mon, Aug 16, 2010 at 10:37 AM, Meikel Brandmeyer wrote: > On 15 Aug., 23:41, Brian Marick wrote: > >> I have a need to catch and handle all Java Throwables except those used by >> c.c.error-kit. I can identify an error-kit throwable like this: >> >>   (re-find #"^Error Kit Control Exception"

Re: Identifying error-kit Throwables

2010-08-16 Thread Meikel Brandmeyer
Hi, On 15 Aug., 23:41, Brian Marick wrote: > I have a need to catch and handle all Java Throwables except those used by > c.c.error-kit. I can identify an error-kit throwable like this: > >   (re-find #"^Error Kit Control Exception" (.toString e))) > > That does not fill me with joy. What's the

Identifying error-kit Throwables

2010-08-16 Thread Brian Marick
I have a need to catch and handle all Java Throwables except those used by c.c.error-kit. I can identify an error-kit throwable like this: (re-find #"^Error Kit Control Exception" (.toString e))) That does not fill me with joy. What's the right way to do it? - Brian Marick, independent co