Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-19 09:47:50

0001 // runtime_error.hpp
0002 // Copyright (c) 2007-2009 Ben Hanson (http://www.benhanson.net/)
0003 //
0004 // Distributed under the Boost Software License, Version 1.0. (See accompanying
0005 // file licence_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
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