@@ -19,11 +19,11 @@ OF_ASSUME_NONNULL_BEGIN @class OFURL; -/*! +/** * @class OFCopyItemFailedException \ * OFCopyItemFailedException.h ObjFW/OFCopyItemFailedException.h * * @brief An exception indicating that copying a item failed. */ @@ -31,28 +31,28 @@ { OFURL *_sourceURL, *_destinationURL; int _errNo; } -/*! +/** * @brief The path of the source item. */ @property (readonly, nonatomic) OFURL *sourceURL; -/*! +/** * @brief The destination path. */ @property (readonly, nonatomic) OFURL *destinationURL; -/*! +/** * @brief The errno of the error that occurred. */ @property (readonly, nonatomic) int errNo; + (instancetype)exception OF_UNAVAILABLE; -/*! +/** * @brief Creates a new, autoreleased copy item failed exception. * * @param sourceURL The original path * @param destinationURL The new path * @param errNo The errno of the error that occurred @@ -62,11 +62,11 @@ destinationURL: (OFURL *)destinationURL errNo: (int)errNo; - (instancetype)init OF_UNAVAILABLE; -/*! +/** * @brief Initializes an already allocated copy item failed exception. * * @param sourceURL The original path * @param destinationURL The new path * @param errNo The errno of the error that occurred