@@ -23,11 +23,11 @@ OF_ASSUME_NONNULL_BEGIN @class OFCondition; -/*! +/** * @class OFConditionWaitFailedException \ * OFConditionWaitFailedException.h \ * ObjFW/OFConditionWaitFailedException.h * * @brief An exception indicating waiting for a condition failed. @@ -36,31 +36,31 @@ { OFCondition *_condition; int _errNo; } -/*! +/** * @brief The condition for which could not be waited. */ @property OF_NULLABLE_PROPERTY (readonly, nonatomic) OFCondition *condition; -/*! +/** * @brief The errno of the error that occurred. */ @property (readonly, nonatomic) int errNo; -/*! +/** * @brief Creates a new, autoreleased condition wait failed exception. * * @param condition The condition for which could not be waited * @param errNo The errno of the error that occurred * @return A new, autoreleased condition wait failed exception */ + (instancetype)exceptionWithCondition: (nullable OFCondition *)condition errNo: (int)errNo; -/*! +/** * @brief Initializes an already allocated condition wait failed exception. * * @param condition The condition for which could not be waited * @param errNo The errno of the error that occurred * @return An initialized condition wait failed exception