hello everyone I am new to programming. I am doingWill the below code handle any type of exception.?
try { // some code } catch(Exception e) { // some code part } Will this above code handle any type of exception or not?
Or should I do like this:
try { // some code } catch(type of Exception e) { // some coding stuff }