digitalmars.D.learn - Getting the text of an exception
- Phil Deets (18/18) Dec 11 2009 How can I get the unadorned text of an exception? When I run:
- Michal Minich (2/3) Dec 11 2009 e.msg
- Phil Deets (5/8) Dec 12 2009 Thanks, is this documented somewhere?
How can I get the unadorned text of an exception? When I run: import std.stdio; int main() { try { throw new Exception("text"); } catch (Exception e) { writeln(e.toString()); } return 0; } I get the output: object.Exception: text I could just remove the "object.Exception: ", but is this how I am supposed to get the text? -- Using Opera's revolutionary e-mail client: http://www.opera.com/mail/
Dec 11 2009
Hello Phil,How can I get the unadorned text of an exception?e.msg
Dec 11 2009
On Fri, 11 Dec 2009 08:32:21 -0500, Michal Minich <michal.minich gmail.com> wrote:Hello Phil,Thanks, is this documented somewhere? -- Using Opera's revolutionary e-mail client: http://www.opera.com/mail/How can I get the unadorned text of an exception?e.msg
Dec 12 2009