@@ -14,12 +14,12 @@ * file. */ #import "OFException.h" -/** - * \brief An exception indicating that deleting a directory failed. +/*! + * @brief An exception indicating that deleting a directory failed. */ @interface OFDeleteDirectoryFailedException: OFException { OFString *path; int errNo; @@ -28,33 +28,33 @@ #ifdef OF_HAVE_PROPERTIES @property (readonly, copy, nonatomic) OFString *path; @property (readonly) int errNo; #endif -/** - * \param class_ The class of the object which caused the exception - * \param path The path of the directory - * \return A new delete directory failed exception +/*! + * @param class_ The class of the object which caused the exception + * @param path The path of the directory + * @return A new delete directory failed exception */ + (instancetype)exceptionWithClass: (Class)class_ path: (OFString*)path; -/** +/*! * Initializes an already allocated delete directory failed exception. * - * \param class_ The class of the object which caused the exception - * \param path The path of the directory - * \return An initialized delete directory failed exception + * @param class_ The class of the object which caused the exception + * @param path The path of the directory + * @return An initialized delete directory failed exception */ - initWithClass: (Class)class_ path: (OFString*)path; -/** - * \return The errno from when the exception was created +/*! + * @return The errno from when the exception was created */ - (int)errNo; -/** - * \return The path of the directory +/*! + * @return The path of the directory */ - (OFString*)path; @end