RosettaCodeData/Task/Exceptions/DWScript/exceptions-2.dw
2023-07-01 13:44:08 -04:00

11 lines
242 B
Text

procedure Test2;
begin
try
test;
except
on E: Exception do begin // Filter by exception class
PrintLn(E.Message); // Showing exception message
raise; // Rethrowing
end;
end;
end;