Back to notes -- Keyboard shortcut: 'u'  previous -- Keyboard shortcut: 'p'        Slide program -- Keyboard shortcut: 't'    Output from the program that rethrows an exception.Lecture 9 - slide 25 : 30
Program 2
Main
M(table,6)
N(table,6)
P(table,6)

Unhandled Exception: 
 System.IndexOutOfRangeException: 
  Index was outside the bounds of the array.
   at ExceptionDemo.P(Int32[] table, Int32 idx)
   at ExceptionDemo.N(Int32[] table, Int32 idx)
   at ExceptionDemo.M(Int32[] table, Int32 idx)
   at ExceptionDemo.Main()