I would like to disable the function from which the debugger notifies me of an Exception in a code snippet.
Example:
try
Text := CurrToStrF('Erro', ffNumber, 2);
except
Text := '0,00';
end;
While debugging the above code on some occasions, the exception is thrown and debugging pauses by displaying a message on the screen.
However, since I know that it will throw the exception, I wanted delphi to ignore the exceptions only in that part.
Are there any directives (or other means) that would warn the debugger not to stop?
I'm using Delphi 2009