35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
/**
* \param class_ The class of the object which caused the exception
* \param request The HTTP request which failed
* \param result The result of the failed HTTP request
* \return A new HTTP request failed exception
*/
+ exceptionWithClass: (Class)class_
request: (OFHTTPRequest*)request
result: (OFHTTPRequestResult*)result;
/**
* Initializes an already allocated HTTP request failed exception
*
* \param class_ The class of the object which caused the exception
* \param request The HTTP request which failed
* \param result The result of the failed HTTP request
|
|
|
|
|
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
/**
* \param class_ The class of the object which caused the exception
* \param request The HTTP request which failed
* \param result The result of the failed HTTP request
* \return A new HTTP request failed exception
*/
+ (instancetype)exceptionWithClass: (Class)class_
request: (OFHTTPRequest*)request
result: (OFHTTPRequestResult*)result;
/**
* Initializes an already allocated HTTP request failed exception
*
* \param class_ The class of the object which caused the exception
* \param request The HTTP request which failed
* \param result The result of the failed HTTP request
|