10Duke Scale C++ Client
Loading...
Searching...
No Matches
UnknownHostException.h
1#ifndef TENDUKE_NET_UNKNOWNHOSTEXCEPTION_H
2#define TENDUKE_NET_UNKNOWNHOSTEXCEPTION_H
3
4#include "./NetworkingException.h"
5
6namespace tenduke { namespace net {
7
8
14{
15public:
20 explicit UnknownHostException(const std::string& message)
21 : tenduke::net::NetworkingException(message)
22 {}
23};
24
25
26}}
27
28#endif // TENDUKE_NET_UNKNOWNHOSTEXCEPTION_H
Generic networking exception.
Definition NetworkingException.h:13
A tenduke::net::NetworkingException thrown when the host is not found.
Definition UnknownHostException.h:14
UnknownHostException(const std::string &message)
Constructs new instance.
Definition UnknownHostException.h:20
Root for classes, functions and globals of 10Duke C++ Client.
Definition BackendConfiguration.h:7