RosettaCodeData/Task/Exceptions/Delphi/exceptions-2.delphi

10 lines
164 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
procedure test2;
begin
try
test;
except
ShowMessage(Exception(ExceptObject).Message); // Showing exception message
raise; // Rethrowing
end;
end;