-
Notifications
You must be signed in to change notification settings - Fork 2
/
jerr.h
48 lines (44 loc) · 1.67 KB
/
jerr.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/* Copyright 1990-2011, Jsoftware Inc. All rights reserved. */
/* License in license.txt. */
/* */
/* Error Codes */
#define EVATTN 1 /* See i.c for error texts */
#define EVBREAK 2
#define EVDOMAIN 3
#define EVILNAME 4
#define EVILNUM 5
#define EVINDEX 6
#define EVFACE 7
#define EVINPRUPT 8
#define EVLENGTH 9
#define EVLIMIT 10
#define EVNONCE 11
#define EVASSERT 12
#define EVOPENQ 13
#define EVRANK 14
#define EVSPELL 16
#define EVSTACK 17
#define EVSTOP 18
#define EVSYNTAX 19
#define EVSYSTEM 20
#define EVVALUE 21
#define EVWSFULL 22
#define EVCTRL 23
#define EVFACCESS 24
#define EVFNAME 25
#define EVFNUM 26
#define EVTIME 27
#define EVSECURE 28
#define EVSPARSE 29
#define EVLOCALE 30
#define EVRO 31
#define EVALLOC 32
#define EVNAN 33
#define NEVM 33 /* number of event codes */
/* The following codes are never displayed to the user */
#define EWOV 50 /* integer overflow */
#define EWIMAG 51 /* imaginery result */
#define EWIRR 52 /* irrational result */
#define EWRAT 53 /* rational result */
#define EWDIV0 54 /* division by zero */
#define EWTHROW 55 /* throw. executed */