pas2js/demo/rtl/demouncaughtexception.pas
2017-12-16 14:45:10 +00:00

12 lines
196 B
ObjectPascal

program demouncaughtexception;
uses sysutils;
Type
EMyError = class(Exception);
begin
Raise EMyError.Create('This can be shown in an alert by setting rtl.setUncaughtException=true');
end.