REBOL 3 Docs | Guide | Concepts | Functions | Datatypes | Errors |
TOC < Back Next > | Updated: 6-Feb-2009 Edit History |
There are several categories of errors.
Syntax errors occur when a script uses REBOL syntax incorrectly. For instance, if a closing bracket is missing or a string is missing its closing quote, a syntax error will occur. These errors only occur during the load or evaluation of a file or string.
Script errors are general run-time errors. For instance, an invalid argument to a function will cause a script error.
Math errors occur when a math operation cannot be processed. For instance, when attempting to divide by zero an error will occur.
Access errors occur when a problem occurs with a file, port or network access. For example, an access error will occur when attempting to read a file that does not exist.
User errors are generated explicitly by a script by creating an error value and returning it.
Internal errors occur within the REBOL interpreter.
TOC < Back Next > | REBOL.com - WIP Wiki | Feedback Admin |