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