我的自定义异常类派生自boost::property_tree::ptree_bad_data,如下所示:
class MyCustomException : public boost::property_tree::ptree_bad_data
{
public:
explicit MyCustomException(const std::string& msg): mMsg(msg) {}
virtual ~MyCustomException() throw() {}
virtual const char* what() const throw() { return mMsg.c_str(); }
private:
std::string mMsg;
};
在编译期间,我得到错误:
error: no matching function for call to ‘boost::property_tree::ptree_bad_data::ptree_bad_data()’
explicit MyCustomException(const std::string& msg): mMsg(msg) {}
^
note: candidate expects 2 arguments, 0 provided
explicit MyCustomException(const std::string& msg): mMsg(msg) {}
^
任何想法可能是什么原因?
答案 0 :(得分:2)
根据文档,类ptree_bad_data
没有无参数构造函数。它实际上有单个构造函数:
template<typename T> ptree_bad_data(const std::string &, const T &);
所以你必须在构造函数中提供这两个参数:
explicit MyCustomException(const std::string& msg)
: boost::property_tree::ptree_bad_data(msg, nullptr /* correct data here */)
您的异常类也不需要单独存储异常消息。标准异常类将为您做到这一点。
顺便说一下,您确定要从ptree_bad_data
派生例外吗?