19 lines
482 B
Java
19 lines
482 B
Java
package org.neoflock.NeoNucleus;
|
|
|
|
public enum nn_Exit {
|
|
// no error
|
|
NN_OK,
|
|
// out of memory.
|
|
NN_ENOMEM,
|
|
// over the limit. For example, adding too many architectures to a machine.
|
|
NN_ELIMIT,
|
|
// internal stack underflow when managing the stack.
|
|
NN_EBELOWSTACK,
|
|
// internal stack overflow when carrying values.
|
|
NN_ENOSTACK,
|
|
// bad invocation, error message stored in computer state
|
|
NN_EBADCALL,
|
|
// bad state, the function was called at the wrong time
|
|
NN_EBADSTATE,
|
|
}
|