using System;
public class Program
{
public static void Main()
try{
throw new ArgumentOutOfRangeException("TEST", "TESTUJEMY WIADOMOSC");
}catch(Exception eee)
Console.WriteLine("Pierwszy exception");
throw;
}
catch (Exception eee)
Console.WriteLine(eee.ToString());