User Memory Error Codes

User Memory error codes are defined in the UserMemoryErrorCode class. Functions in the UserMemory class may return these errors.

Error

Code (Decimal)

Code (Hex)

Description

Resolution

CurrentlyReallocatingUserMemory

98304

0x18000

Currently reallocating user memory.

Reserved.

FailedToReallocateUserMemory

98305

0x18001

Failed to reallocate user memory.

Reserved.

UserMemoryCountOutOfRange

98306

0x18002

User memory count is out of range.

Verify that the specified user memory count is within range.

ExceededMaxReadWriteBytesRange

98307

0x18003

Exceeded maximum range that can be read or written by one function call.

Reduce the range of user memory accessed to maxUserMemoryReadWriteBytes (or for certain functions, half of this value). Call the function multiple times to read or write a larger range of the user memory.

SharedMemoryNull

98308

0x18003

Shared memory is null.

Create a new UserMemory class to call the function from. Otherwise, restart the engine, or restart the PC.