File indexing completed on 2025-01-18 09:53:20
0001
0002
0003
0004
0005
0006
0007
0008
0009 #ifndef BOOST_UNORDERED_DETAIL_BAD_ARCHIVE_EXCEPTION_HPP
0010 #define BOOST_UNORDERED_DETAIL_BAD_ARCHIVE_EXCEPTION_HPP
0011
0012 #include <stdexcept>
0013
0014 namespace boost{
0015 namespace unordered{
0016 namespace detail{
0017
0018 struct bad_archive_exception:std::runtime_error
0019 {
0020 bad_archive_exception():std::runtime_error("Invalid or corrupted archive"){}
0021 };
0022
0023 }
0024 }
0025 }
0026
0027 #endif