21
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
try
8
{
9
DoSomething();
10
}
11
catch(NotImplementedException e)
12
{
13
throw e;
14
}
15
}
16
17
public static void DoSomething()
18
{
19
throw new NotImplementedException("Something went wrong");
20
}
21
}
Cached Result