I have a question regarding exception handling. Consider following Java code snippet.
try{ //code }catch(SubSubException subsube
I think, better (much readable):
try { ..... } catch (IndexOutOfBoundsException iooe) { } catch (ArrayIndexOutOfBoundsException aiooe) { } .....
and
try { ..... } catch (Exception e) { if (e instanceof Exception) { } else if (e instanceof Exception) { } else ..... }