Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:53:20

0001 /* Copyright 2023 Joaquin M Lopez Munoz.
0002  * Distributed under the Boost Software License, Version 1.0.
0003  * (See accompanying file LICENSE_1_0.txt or copy at
0004  * http://www.boost.org/LICENSE_1_0.txt)
0005  *
0006  * See https://www.boost.org/libs/unordered for library home page.
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 } /* namespace detail */
0024 } /* namespace unordered */
0025 } /* namespace boost */
0026 
0027 #endif