xxxxxxxxxx
import std.stdio;
class MyException : Exception
{
this()
{
super("bla");
}
}
void bla()
{
try throw new MyException;
catch (MyException) { }
catch (Exception) { assert(false); }
}
void main() {
try
{
writeln("Hello D");
throw new Exception("Foob");
}
finally
{
bla();
}
}