@@ -38,11 +38,11 @@ /*! * @brief Creates a new, autoreleased create symbolic link failed exception. * * @param sourcePath The source for the symbolic link * @param destinationPath The destination for the symbolic link - * @param errNo The errno of the error + * @param errNo The errno of the error that occurred * @return A new, autoreleased create symbolic link failed exception */ + (instancetype)exceptionWithSourcePath: (OFString*)sourcePath destinationPath: (OFString*)destinationPath errNo: (int)errNo; @@ -51,11 +51,11 @@ * @brief Initializes an already allocated create symbolic link failed * exception. * * @param sourcePath The source for the symbolic link * @param destinationPath The destination for the symbolic link - * @param errNo The errno of the error + * @param errNo The errno of the error that occurred * @return An initialized create symbolic link failed exception */ - initWithSourcePath: (OFString*)sourcePath destinationPath: (OFString*)destinationPath errNo: (int)errNo; @@ -73,12 +73,12 @@ * @return A string with the destination for the symlink */ - (OFString*)destinationPath; /*! - * @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 #endif