12345678910



Question 1: What exception will be thrown from the following block of code?
try {
throw new TryException();
}
catch {
throw new CatchException();
}
finally {
throw new FinallyException();
}

1. TryException
2. CatchException
3. FinallyException