Which of the following statements invoke the exception class?
A
throws new Exception();
B
throw new Exception();
C
new Exception();
D
new throws Exception();
Correct Answer: throw new Exception();
throw new Exception(); trigger an exception and each “throw” must have at least one “catch”.