C Sharp (C#) - Exception Handling
What will be the output of the following C# code?
try {
throw new Exception("Error 1");
} catch (Exception ex) {
Console.WriteLine(ex.Message);
throw;
}