2
Reply

Can Exception handling we can handle multiple catch blocks?

Vinod manola

Vinod manola

13y
2.4k
0
Reply
    You can but the Exception ex should be the last catch prior to be specific catch blocks like IndexOutOfRange exception etc.,
    yes..... exampletry {/// code } catch(Exception ex) { throw ex; } catch() { }