我正在创建名为的自定义异常类app_exception
,它派生自runtime_exception
. 我想在构造函数中放置多个参数,但我不知道为什么代码无法编译。我通常使用va_start
with ...
,但我正在尝试使用 Parameter Pack 来执行此操作。
template <class Base, class... Args>
class app_error final : public std::runtime_error
{
auto init_base(Args... args)
{
return std::to_string(args);
}
auto init_base(Base msg, Args... args)
{
static std::ostringstream stream;
stream << msg;
stream << init_base(std::forward<Args>(args)...);
return stream.str().c_str();
}
public:
using base = std::runtime_error;
app_error(Base msg, Args... args) : base(init_base(msg, args...)) {}
};
我认为这是大体上的事情,但我不太确定。我想像这样使用它:
throw app_error{"FAILED: Exception code is ", exceptionInteger, ". Unable to create ", 5, " needed resources."};