Cannot make a personalized exception
Vermi
aurelien.vermifuge at gmail.com
Mon May 14 06:53:24 PDT 2007
It was just a try, but deleting the toString function don't change my problem :/
I think the linker cannot find the modules because there are not in it's include path. I will try to compile all the files simultaneously in a single line.
The problem is not present when I don't use modules.
I saw phobos has a .a file in the lib directory, should my modules have one too ?
sorry for my english.
Vermi
Stewart Gordon Wrote:
> "Vermi" <aurelien.vermifuge at gmail.com> wrote in message
> news:f22d6l$tfi$1 at digitalmars.com...
> > I'm trying to make a custom Exception class with this :
> >
> >
> > class MyException : Exception
> > {
> > static char[] s = "My Exception";
> > this()
> > {
> > super(s);
> > }
> >
> > char[] toString()
> > {
> > return s;
> > }
> > }
> <snip>
>
> Any particular reason you're overriding toString to do exactly what it
> already does?
>
> Stewart.
>
More information about the Digitalmars-d-learn
mailing list