using System;
public class Test
{
public static void Main()
try
Thrower();
}
catch (Exception ex)
Console.WriteLine(ex);
Console.WriteLine();
throw;
public static void Thrower()
throw new Exception();