Except

From Free Pascal wiki
Revision as of 17:24, 6 August 2022 by Kai Burghardt (talk | contribs) (resolve Category: Pages using deprecated enclose attributes)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

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