10Duke Scale C++ Client
Loading...
Searching...
No Matches
HTTPException.h
1#ifndef TENDUKE_HTTP_HTTPEXCEPTION_H
2#define TENDUKE_HTTP_HTTPEXCEPTION_H
3
4#include "net/NetworkingException.h"
5
6namespace tenduke { namespace http {
7
8
16{
17public:
22 explicit HTTPException(const std::string &message)
23 : tenduke::net::NetworkingException(message)
24 {}
25};
26
27
28}}
29
30#endif // TENDUKE_HTTP_HTTPEXCEPTION_H
A generic HTTP-exception.
Definition HTTPException.h:16
HTTPException(const std::string &message)
Constructs new instance.
Definition HTTPException.h:22
Generic networking exception.
Definition NetworkingException.h:13
NetworkingException(const std::string &message)
Constructs new instance.
Definition NetworkingException.h:19
Root for classes, functions and globals of 10Duke C++ Client.
Definition BackendConfiguration.h:7