@@ -24,11 +24,11 @@ OF_ASSUME_NONNULL_BEGIN @class OFHTTPRequest; @class OFHTTPResponse; -/*! +/** * @class OFHTTPRequestFailedException \ * OFHTTPRequestFailedException.h \ * ObjFW/OFHTTPRequestFailedException.h * * @brief An exception indicating that an HTTP request failed. @@ -37,23 +37,23 @@ { OFHTTPRequest *_request; OFHTTPResponse *_response; } -/*! +/** * @brief The HTTP request which failed. */ @property (readonly, nonatomic) OFHTTPRequest *request; -/*! +/** * @brief The response for the failed HTTP request. */ @property (readonly, nonatomic) OFHTTPResponse *response; + (instancetype)exception OF_UNAVAILABLE; -/*! +/** * @brief Creates a new, autoreleased HTTP request failed exception. * * @param request The HTTP request which failed * @param response The response for the failed HTTP request * @return A new, autoreleased HTTP request failed exception @@ -61,11 +61,11 @@ + (instancetype)exceptionWithRequest: (OFHTTPRequest *)request response: (OFHTTPResponse *)response; - (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