/*
* Exceptions thrown by the interpreter
*/
extern char exAlt[]; /* alt send/recv on same chan */
extern char exBusy[]; /* channel busy */
extern char exHangup[]; /* channel hangup */
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[]; /* heap full */
extern char exItype[]; /* inconsistant type */
extern char exMathia[]; /* invalid math argument */
extern char exBounds[]; /* array bounds error */
extern char exNomem[]; /* no memory */
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 */
syntax highlighted by Code2HTML, v. 0.9.1