ObjFW  Diff

Differences From Artifact [3ca5a6b23c]:

To Artifact [40f50e7dcf]:


16
17
18
19
20
21
22


23
24
25
26
27
28
29

#import "OFException.h"

#ifndef OF_HAVE_SOCKETS
# error No sockets available!
#endif



@class OFHTTPRequest;
@class OFHTTPResponse;

/*!
 * @class OFHTTPRequestFailedException \
 *	  OFHTTPRequestFailedException.h \
 *	  ObjFW/OFHTTPRequestFailedException.h







>
>







16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31

#import "OFException.h"

#ifndef OF_HAVE_SOCKETS
# error No sockets available!
#endif

OF_ASSUME_NONNULL_BEGIN

@class OFHTTPRequest;
@class OFHTTPResponse;

/*!
 * @class OFHTTPRequestFailedException \
 *	  OFHTTPRequestFailedException.h \
 *	  ObjFW/OFHTTPRequestFailedException.h
62
63
64
65
66
67
68


 * @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;
@end









>
>
64
65
66
67
68
69
70
71
72
 * @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;
@end

OF_ASSUME_NONNULL_END