10Duke Scale C++ Client
Loading...
Searching...
No Matches
MalformedURLException.h
1#ifndef TENDUKE_NET_MALFORMEDURLEXCEPTION_H
2#define TENDUKE_NET_MALFORMEDURLEXCEPTION_H
3
4#include "./URLException.h"
5
6namespace tenduke { namespace net {
7
8
12{
13public:
18 explicit MalformedURLException(const std::string& message)
19 : tenduke::net::URLException(message)
20 {}
21};
22
23
24}}
25
26#endif // TENDUKE_NET_MALFORMEDURLEXCEPTION_H
Thrown when URL is malformed.
Definition MalformedURLException.h:12
MalformedURLException(const std::string &message)
Constructs new instance.
Definition MalformedURLException.h:18
A tenduke::net::NetworkingException thrown when various URL-related errors occur.
Definition URLException.h:14
Root for classes, functions and globals of 10Duke C++ Client.
Definition BackendConfiguration.h:7