+ 2
handle all exception
Can we handle all exception by try - catch block? ever the exceptions which we don't control?
3 ответов
+ 3
This will catch any exception
catch(Exception e) {
}
0
thanks a lot :)
0
A
Can we handle all exception by try - catch block? ever the exceptions which we don't control?