mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-11 17:27:33 +08:00
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc to all files copyright Regents of Berkeley. Man, that's a lot of files.
31 lines
928 B
C
31 lines
928 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* excid.h
|
|
* POSTGRES known exception identifier definitions.
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: excid.h,v 1.7 2000/01/26 05:58:38 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef EXCID_H
|
|
#define EXCID_H
|
|
|
|
|
|
extern Exception FailedAssertion;
|
|
extern Exception BadState;
|
|
extern Exception BadArg;
|
|
extern Exception BadAllocSize;
|
|
extern Exception ExhaustedMemory;
|
|
extern Exception Unimplemented;
|
|
|
|
extern Exception CatalogFailure;/* XXX inconsistent naming style */
|
|
extern Exception InternalError; /* XXX inconsistent naming style */
|
|
extern Exception SemanticError; /* XXX inconsistent naming style */
|
|
extern Exception SystemError; /* XXX inconsistent naming style */
|
|
|
|
#endif /* EXCID_H */
|