# ErrorType Enumeration

Possible errors returned by our interpreter.

# Enumeration members

# CYCLE

• CYCLE: = "CYCLE"

Defined in src/Cell.ts:36 (opens new window)

Cyclic dependency.


# DIV_BY_ZERO

• DIV_BY_ZERO: = "DIV_BY_ZERO"

Defined in src/Cell.ts:27 (opens new window)

Division by zero.


# ERROR

• ERROR: = "ERROR"

Defined in src/Cell.ts:48 (opens new window)

Generic error


# LIC

• LIC: = "LIC"

Defined in src/Cell.ts:45 (opens new window)

Invalid/missing licence error.


# NA

• NA: = "NA"

Defined in src/Cell.ts:33 (opens new window)


# NAME

• NAME: = "NAME"

Defined in src/Cell.ts:30 (opens new window)

Unknown function name.


# NUM

• NUM: = "NUM"

Defined in src/Cell.ts:32 (opens new window)


# REF

• REF: = "REF"

Defined in src/Cell.ts:39 (opens new window)

Wrong address reference.


# SPILL

• SPILL: = "SPILL"

Defined in src/Cell.ts:42 (opens new window)

Array spill error.


# VALUE

• VALUE: = "VALUE"

Defined in src/Cell.ts:31 (opens new window)