diff options
Diffstat (limited to 'src/backend/utils/error/excid.c')
-rw-r--r-- | src/backend/utils/error/excid.c | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/src/backend/utils/error/excid.c b/src/backend/utils/error/excid.c index 410d7a56c88..ada9dabed70 100644 --- a/src/backend/utils/error/excid.c +++ b/src/backend/utils/error/excid.c @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * * excid.c-- - * POSTGRES known exception identifier code. + * POSTGRES known exception identifier code. * * Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/excid.c,v 1.2 1996/11/03 06:53:35 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/excid.c,v 1.3 1997/09/07 04:53:19 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -17,51 +17,51 @@ #include "utils/excid.h" /***************************************************************************** - * Generic Recoverable Exceptions * + * Generic Recoverable Exceptions * *****************************************************************************/ /* * FailedAssertion -- - * Indicates an Assert(...) failed. + * Indicates an Assert(...) failed. */ -Exception FailedAssertion = { "Failed Assertion" }; +Exception FailedAssertion = {"Failed Assertion"}; /* * BadState -- - * Indicates a function call request is inconsistent with module state. + * Indicates a function call request is inconsistent with module state. */ -Exception BadState = { "Bad State for Function Call" }; +Exception BadState = {"Bad State for Function Call"}; /* * BadArg -- - * Indicates a function call argument or arguments is out-of-bounds. + * Indicates a function call argument or arguments is out-of-bounds. */ -Exception BadArg = { "Bad Argument to Function Call" }; +Exception BadArg = {"Bad Argument to Function Call"}; /***************************************************************************** - * Specific Recoverable Exceptions * + * Specific Recoverable Exceptions * *****************************************************************************/ /* * BadAllocSize -- - * Indicates that an allocation request is of unreasonable size. + * Indicates that an allocation request is of unreasonable size. */ -Exception BadAllocSize = { "Too Large Allocation Request" }; +Exception BadAllocSize = {"Too Large Allocation Request"}; /* * ExhaustedMemory -- - * Indicates an dynamic memory allocation failed. + * Indicates an dynamic memory allocation failed. */ -Exception ExhaustedMemory = { "Memory Allocation Failed" }; +Exception ExhaustedMemory = {"Memory Allocation Failed"}; /* * Unimplemented -- - * Indicates a function call request requires unimplemented code. + * Indicates a function call request requires unimplemented code. */ -Exception Unimplemented = { "Unimplemented Functionality" }; +Exception Unimplemented = {"Unimplemented Functionality"}; -Exception CatalogFailure = {"Catalog failure"}; /* XXX inconsistent */ -Exception InternalError = {"Internal Error"}; /* XXX inconsistent */ -Exception SemanticError = {"Semantic Error"}; /* XXX inconsistent */ -Exception SystemError = {"System Error"}; /* XXX inconsistent */ +Exception CatalogFailure = {"Catalog failure"}; /* XXX inconsistent */ +Exception InternalError = {"Internal Error"}; /* XXX inconsistent */ +Exception SemanticError = {"Semantic Error"}; /* XXX inconsistent */ +Exception SystemError = {"System Error"}; /* XXX inconsistent */ |