I have derived a class from std::exception:
class exc : public std::exception
{
public:
exc(const text::_char *) throw();
exc(const exc &) throw();
virtual ~exc() throw();
text::_char *m_what;
};
I have two wrapper functions to throw my exception type:
PS: dbg_out refers to std::cout. text is a descendant of std::basic_string<< char >>.
void throw_exception(const text::_char *p_format, ...)
{
va_list l_list;
text l_message;
va_start(l_list, p_format);
l_message.format_va(p_format, l_list);
va_end(l_list);
throw exc((const text::_char *)l_message);
}
void throw_exception_va(const text::_char *p_format, va_list p_list)
{
text l;
exc l_exc((const text::_char *)l.format_va(p_format, p_list));
dbg_out << l_exc.m_what;
throw l_exc;
}
And the main function:
int main(int, char **)
{
try
{
throw_exception("hello world!");
return 0;
}
catch(const std::exception &p)
{
return 0;
}
}
My program crashes with this message:
hello world!
This application has requested the Runtime to terminate it in an unusual way.
Please contact the application's support team for more information.
I use gcc compiler (latest MinGW version)
My program does not enter the catch handler in the main function. It doesnot call the copy constructor of class exc. It looks like the code generated by gcc, does not recognize exc as a descendant of std::exception.
What am I doing wrong?
va_endis undefined behaviour. – Kerrek SB Dec 5 '11 at 21:42textis a descendant ofstd::basic_string?? ... and what'svlb? A class? A namespace? – Charles Bailey Dec 5 '11 at 21:54