No, backtracking and exception handling are not the same thing.

A key difference is that a control frame for a try block is always removed when the try block is finished, regardless of whether the block succeeded or failed. But a control frame for a backtrack block remains in effect after the backtrack block has been exited successfully. Even after the function that created the backtrack control frame returns, that control frame can catch the exception and resume the function that returned earlier.