YAP 7.1.0
yerror.h
1/*************************************************************************
2* *
3* YAP Prolog %W% %G%
4* *
5* Yap Prolog was developed at NCCUP - Universidade do Porto *
6* *
7* Copyright L.Damas, V.S.Costa and Universidade do Porto 1985-1997 *
8* *
9**************************************************************************
10* *
11* File: error.h *
12* Last rev: 19/2/88 *
13* mods: *
14* comments: Error handling header file *
15* *
16*************************************************************************/
17
18/* The behaviour of ErrorHandler is set by these flags :
19
20 CONTINUE_AFTER_ERROR: return to the caller, who should take the necessary
21 measures.
22 ABORT_AFTER_ERROR: output the message, and then abort, back to the
23 top level.
24 EXIT_AFTER_ERROR: output the message, and exit Prolog
25
26*/
27
28#define CONTINUE_AFTER_ERROR 0
29#define ABORT_AFTER_ERROR 1
30#define EXIT_AFTER_ERROR 2
31
32