Lecture overview -- Keyboard shortcut: 'u'  Previous page: Handling more than one type of exception in C# -- Keyboard shortcut: 'p'  Next page: Raising and throwing exceptions in C# -- Keyboard shortcut: 'n'  Lecture notes - all slides together  Annotated slide -- Keyboard shortcut: 't'  Textbook -- Keyboard shortcut: 'v'  Alphabetic index  Help page about these notes  Course home    Exception Handling - slide 22 : 30

Propagation of exceptions in C#
Unhandled exceptions are propagated along the call chain
prog.cs
A C# program with simple propagation of exception handling.
output
Output from the C# program simple propagation.
prog.cs
A C# program with deeper exception propagation chain.
output
Output from the C# program deeper exception propagation.
Go to exercise
Revealing the propagation of exceptions