C Sharp (C#) - Exception Handling
What will be the output of this code?
try {
throw new ApplicationException("App error");
} catch (SystemException) {
Console.WriteLine("System exception caught");
} catch (Exception ex) {
Console.WriteLine(ex.Message);
}