File indexing completed on 2025-01-19 09:47:50
0001
0002
0003
0004
0005
0006 #ifndef BOOST_SPIRIT_SUPPORT_DETAIL_LEXER_RUNTIME_ERROR_HPP
0007 #define BOOST_SPIRIT_SUPPORT_DETAIL_LEXER_RUNTIME_ERROR_HPP
0008
0009 #include <boost/config.hpp> // for BOOST_SYMBOL_VISIBLE
0010 #include <stdexcept>
0011
0012 namespace boost
0013 {
0014 namespace lexer
0015 {
0016 class BOOST_SYMBOL_VISIBLE runtime_error : public std::runtime_error
0017 {
0018 public:
0019 runtime_error (const std::string &what_arg_) :
0020 std::runtime_error (what_arg_)
0021 {
0022 }
0023 };
0024 }
0025 }
0026
0027 #endif