mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 22:07:56 +02:00
* check for proper exception type
This commit is contained in:
parent
2b48afe151
commit
8f269d4540
@ -28,6 +28,11 @@ begin
|
||||
on E:Exception do
|
||||
begin
|
||||
Writeln('Line "c:=..." raised ' +E.ClassName+ ': ' +E.Message);
|
||||
if E.ClassType<>EInvalidOp then
|
||||
begin
|
||||
writeln('EInvalidOp exception expected');
|
||||
halt(1);
|
||||
end;
|
||||
dec(notcaught);
|
||||
end;
|
||||
end;
|
||||
@ -46,6 +51,11 @@ begin
|
||||
on E:Exception do
|
||||
begin
|
||||
Writeln('Line "temp_int:=..." raised ' +E.ClassName+ ': ' +E.Message);
|
||||
if E.ClassType<>EInvalidOp then
|
||||
begin
|
||||
writeln('EInvalidOp exception expected');
|
||||
halt(1);
|
||||
end;
|
||||
dec(notcaught);
|
||||
end;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user