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