excid.h
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * excid.h
  4.  *   POSTGRES known exception identifier definitions.
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: excid.h,v 1.6 1999/02/13 23:22:19 momjian Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef EXCID_H
  14. #define EXCID_H
  15. extern Exception FailedAssertion;
  16. extern Exception BadState;
  17. extern Exception BadArg;
  18. extern Exception BadAllocSize;
  19. extern Exception ExhaustedMemory;
  20. extern Exception Unimplemented;
  21. extern Exception CatalogFailure;/* XXX inconsistent naming style */
  22. extern Exception InternalError; /* XXX inconsistent naming style */
  23. extern Exception SemanticError; /* XXX inconsistent naming style */
  24. extern Exception SystemError; /* XXX inconsistent naming style */
  25. #endif  /* EXCID_H */