using System;
public class Program
{
public static void Main()
try
Throw();
}
catch (Exception e)
Console.WriteLine($"Exception: {e}");
private static void Throw()
throw new Exception("Hello Exception");