What is wrong with the following try/catch block?
try { fibonacci(); } catch (Exception excp) { System.out.println("An error occured"); } catch (ArrayIndexOutOfBoundsException illegal) { System.out.println("Array Out of Bounds!"); }
There are no hints for this question