20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
@class OFHTTPRequestReply;
/*!
* @brief An exception indicating that a HTTP request failed.
*/
@interface OFHTTPRequestFailedException: OFException
{
OFHTTPRequest *request;
OFHTTPRequestReply *reply;
}
#ifdef OF_HAVE_PROPERTIES
@property (readonly, retain, nonatomic) OFHTTPRequest *request;
@property (readonly, retain, nonatomic) OFHTTPRequestReply *reply;
#endif
|
|
|
|
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
@class OFHTTPRequestReply;
/*!
* @brief An exception indicating that a HTTP request failed.
*/
@interface OFHTTPRequestFailedException: OFException
{
OFHTTPRequest *_request;
OFHTTPRequestReply *_reply;
}
#ifdef OF_HAVE_PROPERTIES
@property (readonly, retain, nonatomic) OFHTTPRequest *request;
@property (readonly, retain, nonatomic) OFHTTPRequestReply *reply;
#endif
|