Differences From Artifact [64833ce62b]:
- File
src/exceptions/OFHTTPRequestFailedException.m
— part of check-in
[44f45c2e35]
at
2017-01-09 17:36:36
on branch trunk
— Update copyright
Forgot to add 2017, even though I already did quite some changes in
2017. (user: js, size: 1590) [annotate] [blame] [check-ins using]
To Artifact [057b189e49]:
- File
src/exceptions/OFHTTPRequestFailedException.m
— part of check-in
[4af49a13c3]
at
2017-05-07 20:10:13
on branch trunk
— Small code style change
Casts are now written like types in variable declarations. (user: js, size: 1595) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
20 21 22 23 24 25 26 | #import "OFString.h" #import "OFHTTPRequest.h" #import "OFHTTPResponse.h" @implementation OFHTTPRequestFailedException @synthesize request = _request, response = _response; | | | | | | | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
#import "OFString.h"
#import "OFHTTPRequest.h"
#import "OFHTTPResponse.h"
@implementation OFHTTPRequestFailedException
@synthesize request = _request, response = _response;
+ (instancetype)exceptionWithRequest: (OFHTTPRequest *)request
response: (OFHTTPResponse *)response
{
return [[[self alloc] initWithRequest: request
response: response] autorelease];
}
- init
{
OF_INVALID_INIT_METHOD
}
- initWithRequest: (OFHTTPRequest *)request
response: (OFHTTPResponse *)response
{
self = [super init];
_request = [request retain];
_response = [response retain];
return self;
}
- (void)dealloc
{
[_request release];
[_response release];
[super dealloc];
}
- (OFString *)description
{
const char *method =
of_http_request_method_to_string([_request method]);
return [OFString stringWithFormat:
@"An HTTP %s request with URL %@ failed with code %d!", method,
[_request URL], [_response statusCode]];
}
@end
|