| 12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // Copyright (c) 2019-2025 Ruben Perez Hidalgo (rubenperez038 at gmail dot com)
- //
- // Distributed under the Boost Software License, Version 1.0. (See accompanying
- // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
- //
- #ifndef BOOST_MYSQL_THROW_ON_ERROR_HPP
- #define BOOST_MYSQL_THROW_ON_ERROR_HPP
- #include <boost/mysql/detail/throw_on_error_loc.hpp>
- namespace boost {
- namespace mysql {
- /**
- * \brief (Legacy) Throws an exception in case of error, including diagnostic information.
- * \details
- * If err indicates a failure (`err.failed() == true`), throws an exception that
- * derives from \ref error_with_diagnostics. The exception will make
- * `diag` available in \ref error_with_diagnostics::get_diagnostics.
- *
- * \par Legacy
- * The introduction of \ref with_diagnostics obsoletes almost all uses
- * of this function. New code should attempt to use \ref with_diagnostics
- * instead of manually checking for errors.
- */
- inline void throw_on_error(error_code err, const diagnostics& diag = {})
- {
- detail::throw_on_error_loc(err, diag, boost::source_location{});
- }
- } // namespace mysql
- } // namespace boost
- #endif
|