mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-08 19:33:55 +00:00
43 lines
869 B
C++
43 lines
869 B
C++
#include "ApiException.h"
|
|
|
|
namespace io {
|
|
namespace swagger {
|
|
namespace client {
|
|
namespace api {
|
|
|
|
ApiException::ApiException( int errorCode
|
|
, const utility::string_t& message
|
|
, std::shared_ptr<std::istream> content /*= nullptr*/ )
|
|
: web::http::http_exception( errorCode, message )
|
|
, m_Content(content)
|
|
{
|
|
}
|
|
ApiException::ApiException( int errorCode
|
|
, const utility::string_t& message
|
|
, std::map<utility::string_t, utility::string_t>& headers
|
|
, std::shared_ptr<std::istream> content /*= nullptr*/ )
|
|
: web::http::http_exception( errorCode, message )
|
|
, m_Content(content)
|
|
, m_Headers(headers)
|
|
{
|
|
}
|
|
|
|
ApiException::~ApiException()
|
|
{
|
|
}
|
|
|
|
std::shared_ptr<std::istream> ApiException::getContent() const
|
|
{
|
|
return m_Content;
|
|
}
|
|
|
|
std::map<utility::string_t, utility::string_t>& ApiException::getHeaders()
|
|
{
|
|
return m_Headers;
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|