2
Reply

Can Exception handling we can handle multiple catch blocks?

Vinod manola

Vinod manola

12y
1.9k
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() { }