@@ -29,32 +29,38 @@ @property (readonly, copy, nonatomic) OFString *path; @property (readonly) int errNo; #endif /*! + * @brief Creates a new, autoreleased 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 + * @return A new, autoreleased delete directory failed exception */ + (instancetype)exceptionWithClass: (Class)class_ path: (OFString*)path; /*! - * Initializes an already allocated delete directory failed exception. + * @brief 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 */ - initWithClass: (Class)class_ path: (OFString*)path; /*! + * @brief Returns the errno from when the exception was created. + * * @return The errno from when the exception was created */ - (int)errNo; /*! + * @brief Returns the path of the directory. + * * @return The path of the directory */ - (OFString*)path; @end