User-defined error messages/codes

From: Vince Gonzalez <vince(at)baruch(dot)cuny(dot)edu>
To: pgsql-sql(at)postgresql(dot)org
Subject: User-defined error messages/codes
Date: 2000-01-27 23:13:28
Message-ID: 20000127181328.E24586@newton.baruch.cuny.edu
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Hello,

Is it possible to create user-defined error messages in functions?
For example, I'd like for an update to a table to fail with a message like
'You need to check your privileges' as opposed to 'Permission Denied'.
I'd like to avoid parsing the messages actually returned by the server,
as these could change from revision to revision. Should I do this by
crafting each function to return an error code that I define, and then
use that code to index a table? I'm interested to hear any solutions
people may have come up with.

I seem to remember there being some sort of exception facility, but I
can't remember where I may have seen it (or I could be crazy).

My application is written in Java, if that matters.

--vince

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Vince Gonzalez 2000-01-27 23:42:54 Re: [SQL] User-defined error messages/codes
Previous Message Vince Gonzalez 2000-01-27 23:06:07 User-defined error messages