@@ -35,21 +35,21 @@ /*! * @brief Creates a new, autoreleased remove failed exception. * * @param path The path of the item which could not be removed - * @param errNo The errno of the error + * @param errNo The errno of the error that occurred * @return A new, autoreleased remove item failed exception */ + (instancetype)exceptionWithPath: (OFString*)path errNo: (int)errNo; /*! * @brief Initializes an already allocated remove failed exception. * * @param path The path of the item which could not be removed - * @param errNo The errno of the error + * @param errNo The errno of the error that occurred * @return An initialized remove item failed exception */ - initWithPath: (OFString*)path errNo: (int)errNo; @@ -59,11 +59,11 @@ * @return The path of the item which could not be removed */ - (OFString*)path; /*! - * @brief Returns the errno from when the exception was created. + * @brief Returns the errno of the error that occurred. * - * @return The errno from when the exception was created + * @return The errno of the error that occurred */ - (int)errNo; @end