Differences From Artifact [802233b235]:
- File src/exceptions/OFHTTPRequestFailedException.m — part of check-in [c7f0229795] at 2020-01-02 01:51:34 on branch trunk — Update copyright (user: js, size: 1708) [annotate] [blame] [check-ins using] [more...]
To Artifact [ef8de3042e]:
- File
src/exceptions/OFHTTPRequestFailedException.m
— part of check-in
[6e42ee482f]
at
2020-10-10 10:58:30
on branch trunk
— Make HTTP status code consistently a short
It used to be a short in some places and an int in other places. (user: js, size: 1709) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
62 63 64 65 66 67 68 |
}
- (OFString *)description
{
const char *method = of_http_request_method_to_string(_request.method);
return [OFString stringWithFormat:
| | | 62 63 64 65 66 67 68 69 70 71 72 |
}
- (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 %hd!", method,
_request.URL, _response.statusCode];
}
@end
|