Skip to content

Other Types

This section covers special utility types used throughout RayforceDB

Null

Type Code: 126. Internal Name: Null

Null represents the absence of a value or an uninitialized state. It's a special type used throughout RayforceDB to indicate missing or undefined data.

Error

Type Code: 127. Internal Name: Error

An Error is a special type that represents an error condition in RayforceDB. Errors contain an error code and an error message, providing detailed information about what went wrong.

Errors are automatically created and returned when operations fail. They can be checked using error-handling functions try.

See Error handling in Functions context