Go to the documentation of this file.00001
00006 #include<stdexcept>
00007
00008 namespace my_lib {
00009
00014 struct bad_any_cast : public std::runtime_error {
00016 bad_any_cast(const char * message) : std::runtime_error(message) {}
00017
00018 };
00019 }