10Duke Enterprise C++ SDK
Toggle main menu visibility
Loading...
Searching...
No Matches
Forbidden.h
1
#ifndef TENDUKE_HTTP_FORBIDDEN_H
2
#define TENDUKE_HTTP_FORBIDDEN_H
3
4
#include "./ClientError.h"
5
6
namespace
tenduke
{
namespace
http
{
7
8
12
class
Forbidden
:
public
tenduke::http::ClientError
13
{
14
public
:
20
Forbidden
(
21
int
httpStatusCode,
22
const
std::string &message
23
)
24
:
tenduke
::
http
::
ClientError
(httpStatusCode, message)
25
{}
26
};
27
28
29
}}
30
31
#endif
// TENDUKE_HTTP_FORBIDDEN_H
tenduke::http::ClientError
4xx-series, base class for many 4xx-exceptions.
Definition
ClientError.h:13
tenduke::http::ClientError::ClientError
ClientError(int httpStatusCode, const std::string &message)
Constructs new instance.
Definition
ClientError.h:20
tenduke::http::Forbidden::Forbidden
Forbidden(int httpStatusCode, const std::string &message)
Constructs new instance.
Definition
Forbidden.h:20
tenduke::http
HTTP-related services.
Definition
BadRequest.h:6
tenduke
Root for classes, functions and globals of 10Duke C++ Client.
Definition
APIRequest.h:4
core
core
src
http
Forbidden.h
Generated by
1.17.0