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

10 lines
164 B
Text
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
procedure test2;
begin
try
test;
except
ShowMessage(Exception(ExceptObject).Message); // Showing exception message
raise; // Rethrowing
end;
end;