File indexing completed on 2025-12-16 10:10:13
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011 #ifndef BOOST_TYPE_ERASURE_EXCEPTION_HPP_INCLUDED
0012 #define BOOST_TYPE_ERASURE_EXCEPTION_HPP_INCLUDED
0013
0014 #include <boost/config.hpp>
0015 #include <stdexcept>
0016 #include <typeinfo>
0017 #include <string>
0018
0019 namespace boost {
0020 namespace type_erasure {
0021
0022
0023
0024
0025
0026
0027
0028 class BOOST_SYMBOL_VISIBLE bad_function_call : public ::std::invalid_argument
0029 {
0030 public:
0031 bad_function_call() : ::std::invalid_argument("bad_function_call") {}
0032 };
0033
0034
0035
0036
0037 class BOOST_SYMBOL_VISIBLE bad_any_cast : public std::bad_cast {};
0038
0039 }
0040 }
0041
0042 #endif