Difference between revisions of "RunError"

From Lazarus wiki
Jump to navigationJump to search
Line 1: Line 1:
A '''RunError''' is a low-level error emitted by the freepascal [[RTL|Run Time Library]]. In Lazarus runerrors are raised as [[exception]].
+
A '''RunError''' is a low-level error emitted by the freepascal [[RTL|Run Time Library]]. In Lazarus runerrors are raised as [[Exceptions|exception]].
  
 
[[File:runerror232.png]]
 
[[File:runerror232.png]]

Revision as of 11:48, 12 July 2020

A RunError is a low-level error emitted by the freepascal Run Time Library. In Lazarus runerrors are raised as exception.

runerror232.png

RunError(232) reports missing cThreads unit. Add {$define UseCThreads} in the top of the first pascal unit (usually the project .lpr file)

See also