]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/asio/ip/bad_address_cast.hpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / boost / asio / ip / bad_address_cast.hpp
1 //
2 // ip/bad_address_cast.hpp
3 // ~~~~~~~~~~~~~~~~~~~~~~~
4 //
5 // Copyright (c) 2003-2017 Christopher M. Kohlhoff (chris at kohlhoff dot com)
6 //
7 // Distributed under the Boost Software License, Version 1.0. (See accompanying
8 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
9 //
10
11 #ifndef BOOST_ASIO_IP_BAD_ADDRESS_CAST_HPP
12 #define BOOST_ASIO_IP_BAD_ADDRESS_CAST_HPP
13
14 #if defined(_MSC_VER) && (_MSC_VER >= 1200)
15 # pragma once
16 #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
17
18 #include <boost/asio/detail/config.hpp>
19 #include <typeinfo>
20
21 #include <boost/asio/detail/push_options.hpp>
22
23 namespace boost {
24 namespace asio {
25 namespace ip {
26
27 /// Thrown to indicate a failed address conversion.
28 class bad_address_cast : public std::bad_cast
29 {
30 public:
31 /// Default constructor.
32 bad_address_cast() {}
33
34 /// Destructor.
35 virtual ~bad_address_cast() BOOST_ASIO_NOEXCEPT_OR_NOTHROW {}
36
37 /// Get the message associated with the exception.
38 virtual const char* what() const BOOST_ASIO_NOEXCEPT_OR_NOTHROW
39 {
40 return "bad address cast";
41 }
42 };
43
44 } // namespace ip
45 } // namespace asio
46 } // namespace boost
47
48 #include <boost/asio/detail/pop_options.hpp>
49
50 #endif // BOOST_ASIO_IP_ADDRESS_HPP