blob: ef9fb25fcef3024165baa63f0a7d419a38f6e0a3 (
plain)
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
|
/*
* Exceptions thrown by the interpreter
*/
extern char exAlt[]; /* alt send/recv on same chan */
extern char exBusy[]; /* channel busy */
extern char exModule[]; /* module not loaded */
extern char exCompile[]; /* compile failed */
extern char exCrange[]; /* constant range */
extern char exCctovflw[]; /* constant table overflow */
extern char exCphase[]; /* compiler phase error */
extern char exType[]; /* type not constructed correctly */
extern char exZdiv[]; /* zero divide */
extern char exHeap[]; /* out of memory: heap */
extern char exImage[]; /* out of memory: image */
extern char exItype[]; /* inconsistent type */
extern char exMathia[]; /* invalid math argument */
extern char exBounds[]; /* array bounds error */
extern char exNegsize[]; /* negative array size */
extern char exNomem[]; /* out of memory: main */
extern char exSpawn[]; /* spawn a builtin module */
extern char exOp[]; /* illegal dis instruction */
extern char exTcheck[]; /* type check */
extern char exInval[]; /* invalid argument */
extern char exNilref[]; /* dereference of nil */
extern char exRange[]; /* value out of range */
extern char exLoadedmod[]; /* need newmod */
|