Difference between revisions of "Except"

From Free Pascal wiki
Jump to navigationJump to search
Line 14: Line 14:
  
 
also requires auxiliary [[Keyword|keywords]] [[On|<syntaxhighlight lang="pascal" enclose="none">on</syntaxhighlight>]], [[Do|<syntaxhighlight lang="pascal" enclose="none">do</syntaxhighlight>]], and [[End|<syntaxhighlight lang="pascal" enclose="none">end;</syntaxhighlight>]].
 
also requires auxiliary [[Keyword|keywords]] [[On|<syntaxhighlight lang="pascal" enclose="none">on</syntaxhighlight>]], [[Do|<syntaxhighlight lang="pascal" enclose="none">do</syntaxhighlight>]], and [[End|<syntaxhighlight lang="pascal" enclose="none">end;</syntaxhighlight>]].
 +
 +
== See also ==
 +
* [[Finally]]
 +
* [[runtime error|run-time error]]

Revision as of 09:55, 17 March 2019

Deutsch (de) English (en) suomi (fi)

except is a reserved word that is only used in conjunction with try.

exception handling:

  try
     
  except 
    on  do  
  end;

also requires auxiliary keywords on, do, and end;.

See also