Re: [GENERAL] Problem with catching my own exception messages.

2005-06-24 Thread Michael Fuhr
On Tue, Jun 07, 2005 at 05:49:10PM +0200, Gorodowienko Daniel wrote: > > I want to write a function that returns a raise message catched by: > EXCEPTION > WHEN RAISE_EXCEPTION THEN >RETURN . > If exception was raise like this: > RAISE EXCEPTION 'some exception'; > and I want to get 'so

[GENERAL] Problem with catching my own exception messages.

2005-06-07 Thread Gorodowienko Daniel
I want to write a function that returns a raise message catched by: EXCEPTION WHEN RAISE_EXCEPTION THEN RETURN . If exception was raise like this: RAISE EXCEPTION 'some exception'; and I want to get 'some exception', so what should I write instead of . ???