• 2022-06-17
    Which is the correct statement about the throw statement?
    A: The throw statement allows the code to explicitly throw an exception.
    B: throw exception expression; It raises an exception which is an arbitrary value.
    C: throw; can exist in the catch block, as well as in the try and finally blocks.
    D: throw; can only be used in catch blocks to ignore the exception currently being handled by the catch block.