@@ -37,11 +37,11 @@ /*! * @brief Creates a new, autoreleased create directory failed exception. * * @param path A string with the path of the directory which could not be * created - * @param errNo The errno of the error + * @param errNo The errno of the error that occurred * @return A new, autoreleased create directory failed exception */ + (instancetype)exceptionWithPath: (OFString*)path errNo: (int)errNo; @@ -48,11 +48,11 @@ /*! * @brief Initializes an already allocated create directory failed exception. * * @param path A string with the path of the directory which could not be * created - * @param errNo The errno of the error + * @param errNo The errno of the error that occurred * @return An initialized create directory failed exception */ - initWithPath: (OFString*)path errNo: (int)errNo; @@ -63,11 +63,11 @@ * @return A string with the path of the directory which couldn't be created */ - (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