ObjFW  Diff

Differences From Artifact [d6872c389b]:

To Artifact [1a9a49c81c]:


56
57
58
59
60
61
62
63

64
65
66
67
68
69
70
71
72
73



74
75
76
56
57
58
59
60
61
62

63
64
65
66
67
68
69
70
71


72
73
74
75
76
77







-
+








-
-
+
+
+



 * @param request The HTTP request which failed
 * @param response The response for the failed HTTP request
 * @return A new, autoreleased HTTP request failed exception
 */
+ (instancetype)exceptionWithRequest: (OFHTTPRequest *)request
			    response: (OFHTTPResponse *)response;

- init OF_UNAVAILABLE;
- (instancetype)init OF_UNAVAILABLE;

/*!
 * @brief Initializes an already allocated HTTP request failed exception.
 *
 * @param request The HTTP request which failed
 * @param response The response for the failed HTTP request
 * @return A new HTTP request failed exception
 */
- initWithRequest: (OFHTTPRequest *)request
	 response: (OFHTTPResponse *)response OF_DESIGNATED_INITIALIZER;
- (instancetype)initWithRequest: (OFHTTPRequest *)request
		       response: (OFHTTPResponse *)response
    OF_DESIGNATED_INITIALIZER;
@end

OF_ASSUME_NONNULL_END