Can Exception handling we can handle multiple catch blocks?
Vinod manola
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() { }