25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
OF_ASSUME_NONNULL_BEGIN
@class OFHTTPRequest;
@class OFHTTPResponse;
/**
* @class OFHTTPRequestFailedException \
* OFHTTPRequestFailedException.h \
* ObjFW/OFHTTPRequestFailedException.h
*
* @brief An exception indicating that an HTTP request failed.
*/
@interface OFHTTPRequestFailedException: OFException
{
OFHTTPRequest *_request;
OFHTTPResponse *_response;
|
|
<
|
|
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
OF_ASSUME_NONNULL_BEGIN
@class OFHTTPRequest;
@class OFHTTPResponse;
/**
* @class OFHTTPRequestFailedException OFHTTPRequestFailedException.h
* ObjFW/ObjFW.h
*
* @brief An exception indicating that an HTTP request failed.
*/
@interface OFHTTPRequestFailedException: OFException
{
OFHTTPRequest *_request;
OFHTTPResponse *_response;
|