using System; public class Test { public static void Main() { try{ try{ throw new Exception(); } catch{ Console.WriteLine("1-вый блок"); } } catch{ Console.WriteLine("2-рой блок"); } } }