对于没有用户界面访问权限的函数,处理没有指定参数的无效函数调用的最佳方法是什么
function safeSQRT ( x : Real) : real;
begin
/// check for valid params .....
if (x<0) then
begin
exit;
/// create a exception here ??
end;
end;