19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#import "OFDNSQueryFailedException.h"
#import "OFString.h"
@implementation OFResolveHostFailedException
@synthesize host = _host, addressFamily = _addressFamily, error = _error;
+ (instancetype)exceptionWithHost: (OFString *)host
addressFamily: (of_socket_address_family_t)addressFamily
error: (of_dns_resolver_error_t)error
{
return [[[self alloc] initWithHost: host
addressFamily: addressFamily
error: error] autorelease];
}
- (instancetype)initWithHost: (OFString *)host
addressFamily: (of_socket_address_family_t)addressFamily
error: (of_dns_resolver_error_t)error
{
self = [super init];
@try {
_host = [host copy];
_addressFamily = addressFamily;
|
|
|
|
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#import "OFDNSQueryFailedException.h"
#import "OFString.h"
@implementation OFResolveHostFailedException
@synthesize host = _host, addressFamily = _addressFamily, error = _error;
+ (instancetype)exceptionWithHost: (OFString *)host
addressFamily: (OFSocketAddressFamily)addressFamily
error: (of_dns_resolver_error_t)error
{
return [[[self alloc] initWithHost: host
addressFamily: addressFamily
error: error] autorelease];
}
- (instancetype)initWithHost: (OFString *)host
addressFamily: (OFSocketAddressFamily)addressFamily
error: (of_dns_resolver_error_t)error
{
self = [super init];
@try {
_host = [host copy];
_addressFamily = addressFamily;
|