@@ -23,11 +23,11 @@ OF_ASSUME_NONNULL_BEGIN @class OFCondition; -/*! +/** * @class OFConditionSignalFailedException \ * OFConditionSignalFailedException.h \ * ObjFW/OFConditionSignalFailedException.h * * @brief An exception indicating signaling a condition failed. @@ -36,31 +36,31 @@ { OFCondition *_condition; int _errNo; } -/*! +/** * @brief The condition which could not be signaled. */ @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 signal failed exception. * * @param condition The condition which could not be signaled * @param errNo The errno of the error that occurred * @return A new, autoreleased condition signal failed exception */ + (instancetype)exceptionWithCondition: (nullable OFCondition *)condition errNo: (int)errNo; -/*! +/** * @brief Initializes an already allocated condition signal failed exception. * * @param condition The condition which could not be signaled * @param errNo The errno of the error that occurred * @return An initialized condition signal failed exception