@@ -17,11 +17,11 @@ #import "OFException.h" OF_ASSUME_NONNULL_BEGIN -/*! +/** * @class OFGetCurrentDirectoryPathFailedException \ * OFGetCurrentDirectoryPathFailedException.h \ * ObjFW/OFGetCurrentDirectoryPathFailedException.h * * @brief An exception indicating that getting the current directory path @@ -30,18 +30,18 @@ @interface OFGetCurrentDirectoryPathFailedException: OFException { int _errNo; } -/*! +/** * @brief The errno of the error that occurred. */ @property (readonly, nonatomic) int errNo; + (instancetype)exception OF_UNAVAILABLE; -/*! +/** * @brief Creates a new, autoreleased get current directory path failed * exception. * * @param errNo The errno of the error that occurred * @return A new, autoreleased get current directory failed exception @@ -48,11 +48,11 @@ */ + (instancetype)exceptionWithErrNo: (int)errNo; - (instancetype)init OF_UNAVAILABLE; -/*! +/** * @brief Initializes an already allocated get current directory path failed * exception. * * @param errNo The errno of the error that occurred * @return An initialized get current directory path failed exception