@@ -14,12 +14,12 @@ * file. */ #import "OFException.h" -/** - * \brief An exception indicating changing to a directory failed +/*! + * @brief An exception indicating changing to a directory failed */ @interface OFChangeDirectoryFailedException: OFException { OFString *path; int errNo; @@ -28,35 +28,35 @@ #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 A string with the path of the directory to which couldn't be +/*! + * @param class_ The class of the object which caused the exception + * @param path A string with the path of the directory to which couldn't be * changed - * \return A new change directory failed exception + * @return A new change directory failed exception */ + (instancetype)exceptionWithClass: (Class)class_ path: (OFString*)path; -/** +/*! * Initializes an already allocated change directory failed exception. * - * \param class_ The class of the object which caused the exception - * \param path A string with the path of the directory to which couldn't be + * @param class_ The class of the object which caused the exception + * @param path A string with the path of the directory to which couldn't be * changed - * \return An initialized change directory failed exception + * @return An initialized change 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 A string with the path of the directory to which couldn't changed +/*! + * @return A string with the path of the directory to which couldn't changed */ - (OFString*)path; @end