Convert an error code to a string.
Source position: errors.pp line 28
| function StrError( | 
| err: cint | 
| ):string; | 
| err | 
 | Error code to return string from. | 
Error message corresponding to error code Err.
StrError will convert the error code err to a string.
If the error code is unknown or out of bounds, an 'Unknown error (err)' string will be returned.
| 
 | Print error on standard error output. |