using System;
public class Program
{
public static void Main()
try
DoSomething();
}
catch(NotImplementedException e)
throw e;
public static void DoSomething()
throw new NotImplementedException("Something went wrong");