您的位置: 首页 > IT文章 > How to raise exceptions in Delphi How to raise exceptions in Delphi 分类: IT文章 • 2022-03-02 17:06:28 uses SysUtils; procedure RaiseMyException; begin raise Exception.Create('Hallo World!'); end;