{
public:
client_busy(): std::logic_error(std::string()) { }
- virtual ~client_busy() throw() { }
};
class Request;
{
public:
sequence_error(const std::string &w): std::logic_error(w) { }
- virtual ~sequence_error() throw() { }
};
class incompatible_protocol: public std::runtime_error
{
public:
incompatible_protocol(const std::string &w): std::runtime_error(w) { }
- virtual ~incompatible_protocol() throw() { }
};
{
public:
bad_packet(const std::string &w): std::runtime_error(w) { }
- virtual ~bad_packet() throw() { }
};
{
public:
buffer_error(const std::string &w): std::runtime_error(w) { }
- virtual ~buffer_error() throw() { }
};
{
public:
bad_socket_state(const std::string &w): std::logic_error(w) { }
- virtual ~bad_socket_state() throw() { }
};