mirror of
https://github.com/ToruNiina/toml11.git
synced 2025-09-19 03:18:09 +08:00
18 lines
319 B
C++
18 lines
319 B
C++
#ifndef TOML11_EXCEPTION_HPP
|
|
#define TOML11_EXCEPTION_HPP
|
|
|
|
#include <exception>
|
|
|
|
namespace toml
|
|
{
|
|
|
|
struct exception : public std::exception
|
|
{
|
|
public:
|
|
virtual ~exception() noexcept override = default;
|
|
virtual const char* what() const noexcept override {return "";}
|
|
};
|
|
|
|
} // toml
|
|
#endif // TOMl11_EXCEPTION_HPP
|