How to raise exceptions in Delphi

uses
  SysUtils;

procedure RaiseMyException;
begin
  raise Exception.Create('Hallo World!');
end;
原文地址:https://www.cnblogs.com/m0488/p/3768526.html