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
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
. ???