我正在编写一组扩展std::exception
的自定义异常。在某些代码中,当捕获到异常时,我只需重新throw
向上链,直到驱动程序main
函数调用catch
并打印结果。但是,最终打印的所有内容都是“std :: exception”。这似乎不是我之前处理过的scope issue。
为什么我的异常消息无法打印?
我的异常代码:
// General exception class
struct MyException : public std::exception
{
std::string _msg;
MyException(const std::string &exception_name) : _msg(exception_name) {}
void setMessage(const std::string &message)
{
_msg += ": " + message + "\n";
}
void setLocation(const char * func, const char * file, const int line)
{
_msg += " In function " + std::string(func) + "(" + file + ":" + std::to_string(line) + ")";
}
const char * what() const throw()
{
return _msg.c_str();
}
};
// Specializations of the MyException
struct FileNotFoundException : public MyException
{
FileNotFoundException() : MyException("FileNotFoundException") {}
};
struct IOException : public MyException
{
IOException() : MyException("IOException") {}
};
struct DBException : public MyException
{
DBException() : MyException("DBException") {}
};
我的所有异常抛出都包含在此宏
中#define EXCEPTION_THROWER(ET, message) \
{ \
ET e; \
e.setMessage(message); \
e.setLocation(__func__, __FILE__, __LINE__); \
throw e; \
}
并称为
EXCEPTION_THROWER(DBException, "Blah blah database exception")
中间try / catch块如下所示:
try
{
// Call a function that throws an exception
}
catch(const std::exception &e)
{
throw e; // Forward any exceptions
}
并且驱动程序代码全部在一个try
块中,并带有catch (const std::exception &e)
块。
答案 0 :(得分:18)
throw e;
正在执行 object slicing 的数据桶加载,因为它基本上将e
的任何内容切换为std::exception
(和{{ 1}}将丢失。)
使用_msg
通过引用重新抛出捕获的异常。