sure you used 0.0.3? it doesn't break when i try that... Robin Allen wrote: > 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