EDO_DEV/Test code
2026-03-17 03:45:33 +00:00

7 lines
No EOL
196 B
Text

class procedure TedoInfo.Error( const aMsg: String = '' );
begin
if ( aMsg = '' ) then
raise EedoInfoException.Create( SParsingError )
else
raise EedoInfoException.Create( aMsg );
end;