/*------------------------------------------------------------------------- * * excabort.c * Default exception abort code. * * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION * $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/excabort.c,v 1.9 2001/01/24 19:43:15 momjian Exp $ * *------------------------------------------------------------------------- */ #include "postgres.h" #include "utils/exc.h" void ExcAbort(const Exception *excP, ExcDetail detail, ExcData data, ExcMessage message) { /* dump core */ abort(); }