Add Test code

This commit is contained in:
josephlwharton 2026-03-17 03:45:33 +00:00
commit 551549241f

7
Test code Normal file
View file

@ -0,0 +1,7 @@
class procedure TedoInfo.Error( const aMsg: String = '' );
begin
if ( aMsg = '' ) then
raise EedoInfoException.Create( SParsingError )
else
raise EedoInfoException.Create( aMsg );
end;