]> granicus.if.org Git - postgresql/blob - src/include/utils/excid.h
88ba06dc2a8e2c8633f654b2b37a420554abc081
[postgresql] / src / include / utils / excid.h
1 /*-------------------------------------------------------------------------
2  *
3  * excid.h
4  *        POSTGRES known exception identifier definitions.
5  *
6  *
7  * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  * $Id: excid.h,v 1.8 2001/01/24 19:43:28 momjian Exp $
11  *
12  *-------------------------------------------------------------------------
13  */
14 #ifndef EXCID_H
15 #define EXCID_H
16
17
18 extern Exception FailedAssertion;
19 extern Exception BadState;
20 extern Exception BadArg;
21 extern Exception BadAllocSize;
22 extern Exception ExhaustedMemory;
23 extern Exception Unimplemented;
24
25 extern Exception CatalogFailure;/* XXX inconsistent naming style */
26 extern Exception InternalError; /* XXX inconsistent naming style */
27 extern Exception SemanticError; /* XXX inconsistent naming style */
28 extern Exception SystemError;   /* XXX inconsistent naming style */
29
30 #endif   /* EXCID_H */