summaryrefslogtreecommitdiffstats
path: root/Include/errors.h
blob: 35faaa95817a9cd1c37e04fb22634c9c9b84f878 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* Error handling definitions */

void err_set PROTO((object *));
void err_setval PROTO((object *, object *));
void err_setstr PROTO((object *, char *));
int err_occurred PROTO((void));
void err_get PROTO((object **, object **));
void err_clear PROTO((void));

/* Predefined exceptions (in run.c) */
object *RuntimeError;		/* Raised by error() */
object *EOFError;		/* Raised by eof_error() */
object *TypeError;		/* Rased by type_error() */
object *MemoryError;		/* Raised by mem_error() */
object *NameError;		/* Raised by name_error() */
object *SystemError;		/* Raised by sys_error() */
object *KeyboardInterrupt;	/* Raised by intr_error() */