12345678910111213141516171819202122232425262728 |
- #ifndef BOOST_MYSQL_BAD_FIELD_ACCESS_HPP
- #define BOOST_MYSQL_BAD_FIELD_ACCESS_HPP
- #include <exception>
- namespace boost {
- namespace mysql {
- class bad_field_access : public std::exception
- {
- public:
-
- const char* what() const noexcept override { return "bad_value_access"; }
- };
- }
- }
- #endif
|