first commit
This commit is contained in:
18
src/main/org/neoflock/NeoNucleus/nn_Exit.java
Normal file
18
src/main/org/neoflock/NeoNucleus/nn_Exit.java
Normal file
@@ -0,0 +1,18 @@
|
||||
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,
|
||||
}
|
||||
Reference in New Issue
Block a user