Home » PHP » PHP Exception Handling » Question
  1. Which of the following statements invoke the exception class?
    1. new throws Exception();
    2. new Exception();
    3. throws new Exception();
    4. throw new Exception();
    5. None of these
Correct Option: D

throw new Exception();



Your comments will be displayed only after manual approval.