import std.stdio; void main(char[][] args) { try { throw new Exception("Hello"); } catch(Exception e) { writefln(e.msg); } } --- Ddbg breaks with an 'unhandled exception' here, even though the exception is handled! -Rob