@@ -29,32 +29,38 @@ @property (readonly, copy, nonatomic) OFString *path; @property (readonly) int errNo; #endif /** + * \brief Creates a new, autoreleased delete file failed exception. + * * \param class_ The class of the object which caused the exception * \param path The path of the file - * \return A new delete file failed exception + * \return A new, autoreleased delete file failed exception */ + (instancetype)exceptionWithClass: (Class)class_ path: (OFString*)path; /** - * Initializes an already allocated delete file failed exception. + * \brief Initializes an already allocated delete file failed exception. * * \param class_ The class of the object which caused the exception * \param path The path of the file * \return An initialized delete file 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 file. + * * \return The path of the file */ - (OFString*)path; @end