Repository URL to install this package:
|
Version:
1.6 ▾
|
Program test;
begin
writeln('1');
try
writeln('2');
raiseexception(erCustomError, 'TEST EXCEPTION');
writeln('3');
finally
writeln('4');
end;
writeln('5');
end.