29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
@interface OFHTTPRequestFailedException: OFException
{
OFHTTPRequest *_request;
OFHTTPResponse *_response;
}
#ifdef OF_HAVE_PROPERTIES
@property (readonly, retain, nonatomic) OFHTTPRequest *request;
@property (readonly, retain, nonatomic) OFHTTPResponse *response;
#endif
/*!
* @brief Creates a new, autoreleased HTTP request failed exception.
*
* @param request The HTTP request which failed
* @param response The response for the failed HTTP request
|
|
|
|
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
@interface OFHTTPRequestFailedException: OFException
{
OFHTTPRequest *_request;
OFHTTPResponse *_response;
}
#ifdef OF_HAVE_PROPERTIES
@property (readonly, retain) OFHTTPRequest *request;
@property (readonly, retain) OFHTTPResponse *response;
#endif
/*!
* @brief Creates a new, autoreleased HTTP request failed exception.
*
* @param request The HTTP request which failed
* @param response The response for the failed HTTP request
|