Menu

[r224]: / trunk / boost / network / protocol / http / errors.hpp  Maximize  Restore  History

Download this file

33 lines (20 with data), 813 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright Dean Michael Berris 2007, 2008.
// 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 __NETWORK_PROTOCOL_HTTP_ERRORS_20080516_HPP__
#define __NETWORK_PROTOCOL_HTTP_ERRORS_20080516_HPP__
#include <boost/network/protocol/http/message.hpp>
#include <exception>
namespace boost { namespace network { namespace http { namespace errors {
template <class Tag=tags::http>
struct connection_timeout_exception :
std::runtime_error
{
};
typedef connection_timeout_exception<> connection_timeout;
} // namespace errors
} // namespace http
} // namespace network
} // namespace boost
#endif // __NETWORK_PROTOCOL_HTTP_20080516_HPP__