Skip to content
Tristan Hume edited this page Apr 23, 2012 · 2 revisions

#Error.Str

##Syntax Error.Str (errorCode : int): string

##Description Error.Str is a function that returns the error message related to a specified error code. If the error code is eNoError or if there is no such error code, it returns the empty string. If there is such an error, it returns the textual message associated with that error.

##Example This program prints out the string "eFsysFileNotFound".

    put Error.Str (eFsysFileNotFound)

##Status Exported qualified.

This means that you can only call the function by calling Error.Str, not by calling Str.

Clone this wiki locally