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 and notes together  slide -- Keyboard shortcut: 't'  Textbook -- Keyboard shortcut: 'v'  Help page about these notes  Alphabetic index  Course home  Page 22 : 30
Object-oriented Programming in C#
Exception Handling
Propagation of exceptions in C#

Unhandled exceptions are propagated along the call chain

/user/normark/oop-csharp-1/sources/c-sharp/exception/propagated-exception/prog.csA C# program with simple propagation of exception handling. This program is explained


/user/normark/oop-csharp-1/sources/c-sharp/exception/propagated-exception/outputOutput from the C# program simple propagation.


/user/normark/oop-csharp-1/sources/c-sharp/exception/deeper-propagated-exception/prog.csA C# program with deeper exception propagation chain. This program is explained


/user/normark/oop-csharp-1/sources/c-sharp/exception/deeper-propagated-exception/outputOutput from the C# program deeper exception propagation.


Go to exerciseRevealing the propagation of exceptions