DotNetDupe 4.0.6
C++17/20 Implementation of the .NET Base Class Library (BCL)
Loading...
Searching...
No Matches
HttpRequestException.h
Go to the documentation of this file.
1
3
4#pragma once
5#include "System/Exception.h"
6
7namespace DotNetDupe {
8 namespace System {
9 namespace Net {
10 namespace Http {
16 public:
19 HttpRequestException(const String& sMessage) : Exception(sMessage) { }
20 };
21 }
22 }
23 }
24}
Represents errors that occur during application execution and serves as the ultimate base exception.
Exception()
Initializes a new instance of the Exception class with a default system-supplied message.
Definition Exception.cpp:15
HttpRequestException(const String &sMessage)
Initializes a new instance of the HttpRequestException class with a specified error message.
Represents text as a sequence of UTF-8 code units with culture-invariant operations.
Definition String.h:74