mirror of
https://github.com/ToruNiina/toml11.git
synced 2025-09-17 00:38:08 +08:00
683 B
683 B
+++ title = "exception.hpp" type = "docs" +++
exception.hpp
toml::exception
toml11で定義される例外型の基底クラスです。
namespace toml
{
struct exception : public std::exception
{
public:
virtual ~exception() noexcept override = default;
virtual const char* what() const noexcept override {return "";}
};
} // toml
メンバ関数
デストラクタ
virtual ~exception() noexcept override = default;
派生する際に上書きします。
what
virtual const char* what() const noexcept override {return "";}
エラーメッセージを返します。派生する際に上書きします。