Full exception support is now complete. [mterwood]
Matthijs has been working hard on exception support and has managed to pull it off!!! Full exception support with filters are in, and we can write code like:
try
{
throw new MyException("Hello from a custom exception type!!!");
}
catch (MyException e)
{
Console.WriteLine(e.Message);
}
finally
{
Console.WriteLine("Finally!");
}