Q: An error is sometimes thrown in a certain try…catch block. You know that the issue can be fixed within the code during the error handling code block. What statement could you use when the error is found to run the code again?
AThe throw statement should be used in the catch statement to rerun the try block.
BThe finally statement should be used in the catch statement to rerun the try block.
CThe retry statement could be used in the catch statement to rerun the try block.
DA business system function should be used in the catch statement to rerun the try block.