26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
*
* @brief An exception indicating that a DNS query failed.
*/
@interface OFDNSQueryFailedException: OFException
{
OFDNSQuery *_query;
OFDNSResolverErrorCode _errorCode;
}
/**
* @brief The query which could not be performed.
*/
@property (readonly, nonatomic) OFDNSQuery *query;
|
>
|
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
*
* @brief An exception indicating that a DNS query failed.
*/
@interface OFDNSQueryFailedException: OFException
{
OFDNSQuery *_query;
OFDNSResolverErrorCode _errorCode;
OF_RESERVE_IVARS(OFDNSQueryFailedException, 4)
}
/**
* @brief The query which could not be performed.
*/
@property (readonly, nonatomic) OFDNSQuery *query;
|