The program code given below will Check your knowledge of handling Exception in Java.
The program code given below will Check your knowledge of handling Exception in Java.Given below the sample code :
class main{
try {
int a= Integer.parseInt("three");
}
}
Which exception could be handeled by the catch block for above ?
1. ClassCastException(3) & (4)
Above code throws "NumberFormatException" ." IllegalArgumentException" is its superclass.