Difference between revisions of "RunError"

From Lazarus wiki
Jump to navigationJump to search
m (Fixed typos)
m (Categorised page)
Line 5: Line 5:
 
RunError(232) reports missing cThreads unit. Add {$define UseCThreads} in the top of the first Pascal unit (usually the project .lpr file)
 
RunError(232) reports missing cThreads unit. Add {$define UseCThreads} in the top of the first Pascal unit (usually the project .lpr file)
  
==See also==
+
== See also ==
 +
 
 +
* [[compile-time error|Compile time errors]]
 
* [http://www.freepascal.org/docs-html/user/userap4.html List of Run-time errors]
 
* [http://www.freepascal.org/docs-html/user/userap4.html List of Run-time errors]
 +
 +
[[Category:FPC]]
 +
[[Category:Glossary]]
 +
[[Category:Debugging]]
 +
[[Category:Troubleshooting]]

Revision as of 07:11, 18 September 2020

A RunError is a low-level error emitted by the Free Pascal Run Time Library. In Lazarus, RunErrors are raised as exceptions.

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