Annotation of freem/src/errmsg.h, revision 1.3
1.1 snw 1: /*
1.3 ! snw 2: * $Id$
1.1 snw 3: * error message definitions
4: *
5: *
1.2 snw 6: * Author: Serena Willis <snw@coherent-logic.com>
1.1 snw 7: * Copyright (C) 1998 MUG Deutschland
1.3 ! snw 8: * Copyright (C) 2020, 2025 Coherent Logic Development LLC
1.1 snw 9: *
10: *
11: * This file is part of FreeM.
12: *
13: * FreeM is free software: you can redistribute it and/or modify
14: * it under the terms of the GNU Affero Public License as published by
15: * the Free Software Foundation, either version 3 of the License, or
16: * (at your option) any later version.
17: *
18: * FreeM is distributed in the hope that it will be useful,
19: * but WITHOUT ANY WARRANTY; without even the implied warranty of
20: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21: * GNU Affero Public License for more details.
22: *
23: * You should have received a copy of the GNU Affero Public License
24: * along with FreeM. If not, see <https://www.gnu.org/licenses/>.
25: *
1.3 ! snw 26: * $Log$
! 27: *
! 28: * SPDX-FileCopyrightText: (C) 2025 Coherent Logic Development LLC
! 29: * SPDX-License-Identifier: AGPL-3.0-or-later
1.1 snw 30: **/
31:
32: int SIflag[MAXDEV + 1] = {1, 1, 1, 1, 1}; /* SI/SO flag */
33:
34: char errmes[MAXERR][ERRLEN] = {
35: "\201", /* OK */
36: "interrupt\201", /* INRPT */
37: "BREAK point\201", /* BKERR */
38: "syntax illegal in current dialect mode\201", /* NOSTAND */
39: "variable not found\201", /* UNDEF */
40: "label not found\201", /* LBLUNDEF */
41: "missing operand\201", /* MISSOPD */
42: "missing operator\201", /* MISSOP */
43: "unrecognized operator\201", /* ILLOP */
44: "unmatched quotes\201", /* QUOTER */
45: "comma expected\201", /* COMMAER */
46: "equals '=' expected\201", /* ASSIGNER */
47: "argument not permitted\201", /* ARGER */
48: "blank ' ' expected\201", /* SPACER */
49: "unmatched parentheses\201", /* BRAER */
50: "level error\201", /* LVLERR */
51: "divide by zero\201", /* DIVER */
52: "function not found\201", /* ILLFUN */
53: "wrong number of function arguments\201", /* FUNARG */
54: "ZTRAP error\201", /* ZTERR */
55: "$NEXT/$ORDER error\201", /* NEXTER */
56: "$SELECT error\201", /* SELER */
57: "illegal command\201", /* CMMND */
58: "argument list incorrect\201", /* ARGLIST */
59: "invalid expression\201", /* INVEXPR */
60: "invalid reference\201", /* INVREF */
61: "string too long\201", /* MXSTR */
62: "too many parameters\201", /* TOOPARA */
63: "unit not open\201", /* NOPEN */
64: "unit does not exist\201", /* NODEVICE */
65: "file protection violation\201",/* PROTECT */
66: "global not permitted\201", /* GLOBER */
67: "file not found\201", /* FILERR */
68: "program overflow\201", /* PGMOV */
69: "stack overflow\201", /* STKOV */
70: "symbol table overflow\201", /* STORE */
71: "file won't read\201", /* NOREAD */
72: "file won't write\201", /* NOWRITE */
73: "routine not found\201", /* NOPGM */
74: "illegal naked reference\201", /* NAKED */
75: "illegal subscript\201", /* SBSCR */
76: "insert syntax\201", /* ISYNTX */
77: "database degradation\201", /* DBDGD */
78: "job kill signal\201", /* KILLER */
79: "hangup signal\201", /* HUPER */
80: "numeric overflow\201", /* MXNUM */
81: "function returns no value\201",/* NOVAL */
82: "type mismatch\201", /* TYPEMISMATCH */
83: "out of memory\201", /* MEMOV */
84: "error in name resolution\201", /* NAMERES */
85: "error creating socket\201", /* SCKCREAT */
86: "invalid address family (must be IPV4 or IPV6)\201", /* SCKIFAM */
87: "invalid connection type (must be TCP or UDP)\201", /* SCKITYP */
88: "invalid port number\201", /* SCKIPRT */
89: "connection error\201", /* SCKCERR */
90: "USE action invalid for connection type (possibly CONNECT on UDP socket?)\201", /* SCKAERR */
91: "attempted to CONNECT an already-connected socket\201", /* SCKACON */
92: "attempted to READ from a disconnected TCP socket\201", /* SCKNCON */
93: "error setting socket options\201", /* SCKEOPT */
94: "error in READ from socket\201", /* SCKERCV */
95: "error in WRITE to socket\201", /* SCKESND */
96: "^$ZRPI only supported on Raspberry Pi hardware\201", /* NORPI */
97: "cannot redefine CONST\201", /* CREDEF */
98: "cannot modify CONST\201", /* CMODIFY */
99: "cannot open existing file for WRITE\201", /* FILEXWR */
100: "initializing NEW with multiple setarguments not supported\201", /* INEWMULT */
101: "invalid $HOROLOG value\201", /* ZINVHORO */
102: "type mismatch\201", /* TYPMISMATCH */
103: "invalid type specification\201", /* INVTYPE */
104: "invalid library option\201", /* INVLIBOPT */
105: " \201",
106: " \201",
107: " \201",
108: " \201",
109: " \201",
110: " \201",
111: " \201",
112: " \201",
113: " \201",
114: " \201",
115: "invalid value for $ECODE\201", /* ECODEINV */
116: "programmer assertion failed\201", /* ASSERT */
117: "user-defined error\201", /* USERERR */
118: "illegal access to private object field\201", /* OBJFLDACCV */
119: "cannot overwrite local variable with object instance\201", /* OBJCONFLICT */
120: "exceeded maximum count of private object fields\201", /* OBJPRIVOVFL */
121: "invalid access class specifier\201", /* OBJACINVALID */
122: " \201",
123: " \201",
124: " \201",
125: " \201",
126: " \201",
127: " \201",
128: " \201",
129: " \201",
130: " \201",
131: " \201",
132: " \201",
133: " \201",
134: " \201",
135: " \201",
136: " \201",
137: " \201",
138: " \201",
139: " \201",
140: " \201",
141: " \201",
142: " \201",
143: " \201",
144: " \201",
145: " \201",
146: " \201",
147: " \201",
148: " \201",
149: " \201",
150: " \201",
151: " \201",
152: " \201",
153: " \201",
154: " \201",
155: " \201",
156: " \201",
157: " \201",
158: " \201",
159: " \201",
160: " \201",
161: " \201",
162: " \201",
163: "syntax error\201", /* 128 - ZSYNTERR */
164: " \201", /* 129 */
165: " \201", /* 130 */
166: " \201", /* 131 */
167: " \201",
168: " \201",
169: " \201",
170: " \201",
171: " \201",
172: " \201",
173: " \201",
174: " \201",
175: "naked indicator undefined\201", /* 140 - M1 */
176: "invalid combination with $FNUMBER code atom\201", /* M2 */
177: "$RANDOM seed less than 1\201", /* M3 */
178: "no true condition in $SELECT\201", /* M4 */
179: "line reference less than zero\201", /* M5 */
180: "undefined local variable\201", /* M6 */
181: "undefined global variable\201", /* M7 */
182: "undefined intrinsic special variable\201", /* M8 */
183: "divide by zero\201", /* M9 */
184: "invalid pattern match range\201", /* M10 */
185: "no parameters passed\201", /* 150 - M11 */
186: "invalid line reference (negative offset)\201", /* M12 */
187: "invalid line reference (line not found)\201", /* M13 */
188: "line level not 1\201", /* M14 */
189: "undefined index variable\201", /* M15 */
190: "argumented QUIT not allowed\201", /* M16 */
191: "argumented QUIT required\201", /* M17 */
192: "fixed length READ not greater than zero\201", /* M18 */
193: "cannot copy a tree or subtree into itself\201", /* M19 */
194: "line must have a formal parameter list\201", /* M20 */
195: "algorithm specification invalid\201", /* 160 - M21 */
196: "SET or KILL to ^$GLOBAL when data in global\201", /* M22 */
197: "SET or KILL to ^$JOB for non-existent job number\201", /* M23 */
198: "change to collation algorithm while subscripted local variables defined\201", /* M24 */
199: " \201", /* M25 */
200: "non-existent namespace\201", /* M26 */
201: "attempt to rollback a transaction that is not restartable\201", /* M27 */
202: "mathematical function, parameter out of range\201", /* M28 */
203: "SET or KILL on structured system variable not allowed by implementation\201", /* M29 */
204: "reference to global variable with different collating sequence within a collating algorithm\201", /* M30 */
205: "control mnemonic used for device without a mnemonic space selected\201", /* 170 - M31 */
206: "control mnemonic used in user-defined mnemonic space which has no associated line\201", /* M32 */
207: "SET or KILL to ^$ROUTINE when routine exists\201", /* M33 */
208: " \201", /* M34 */
209: "device does not support mnemonic space\201", /* M35 */
210: "incompatible mnemonic spaces\201", /* M36 */
211: "READ from device identified by the empty string\201", /* M37 */
212: "invalid structured system variable subscript\201", /* M38 */
213: "invalid $NAME argument\201", /* M39 */
214: "call-by-reference in JOB actual parameter\201", /* M40 */
215: "invalid LOCK argument within a transaction\201", /* 180 - M41 */
216: "invalid QUIT within a transaction\201", /* M42 */
217: "invalid range value ($X, $Y)\201", /* M43 */
218: "invalid command outside of a transaction\201", /* M44 */
219: "invalid GOTO reference\201", /* M45 */
220: " \201", /* M46 */
221: " \201", /* M47 */
222: " \201", /* M48 */
223: " \201", /* M49 */
224: " \201", /* M50 */
225: " \201", /* 190 - M51 */
226: " \201", /* M52 */
227: " \201", /* M53 */
228: " \201", /* M54 */
229: " \201", /* M55 */
230: "identifier exceeds maximum length\201", /* M56 */
231: "more than one defining occurrence of label in routine\201", /* M57 */
232: "too few formal parameters\201", /* M58 */
233: " \201", /* M59 */
234: "illegal attempt to use an undefined SSVN\201", /* M60 */
235: " \201", /* 200 - M61 */
236: " \201",
237: " \201",
238: " \201",
239: " \201",
240: " \201",
241: " \201",
242: " \201",
243: " \201",
244: " \201", /* M70 */
245: " \201", /* 210 - M71 */
246: " \201",
247: " \201",
248: " \201",
249: "string length exceeds implementation limits\201", /* 214 - M75 */
250: " \201",
251: " \201",
252: " \201",
253: " \201",
254: " \201", /* M80 */
255: " \201", /* 220 - M81 */
256: " \201",
257: " \201",
258: " \201",
259: " \201",
260: " \201",
261: " \201",
262: " \201",
263: " \201",
264: " \201", /* M90 */
265: " \201", /* 230 - M91 */
266: " \201",
267: " \201",
268: " \201",
269: " \201",
270: " \201",
271: " \201",
272: " \201",
273: " \201",
274: " \201", /* M100 */
275: "invalid value for $ECODE\201", /* 240 - M101 */
276: "synchronous and asynchronous event processing cannot be simultaneously enabled for the same event class\201", /* 241 - M102 */
277: "invalid event identifier\201", /* 242 - M103 */
278: "ETRIGGER event identifier for IPC event class does not match job process identifier\201", /* 243 - M104 */
279: " \201", /* 244 */
280: " \201", /* 245 */
281: " \201", /* 246 */
282: " \201", /* 247 */
283: " \201", /* 248 */
284: " \201", /* 249 */
285: " \201", /* 250 */
286: " \201", /* 251 */
287: " \201", /* 252 */
288: " \201", /* 253 */
289: "asynchronous interruption\201", /* 254 - ZASYNC (pseudo-error) */
290: "break\201" /* CTRLB - 255 */
291: };
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>