@@ -21,47 +21,47 @@ /*! * @brief An exception indicating a directory couldn't be created. */ @interface OFCreateDirectoryFailedException: OFException { - OFString *_directoryPath; + OFString *_path; int _errNo; } #ifdef OF_HAVE_PROPERTIES -@property (readonly, copy, nonatomic) OFString *directoryPath; +@property (readonly, copy, nonatomic) OFString *path; @property (readonly) int errNo; #endif /*! * @brief Creates a new, autoreleased create directory failed exception. * - * @param directoryPath A string with the path of the directory which couldn't - * be created + * @param path A string with the path of the directory which could not be + * created * @return A new, autoreleased create directory failed exception */ -+ (instancetype)exceptionWithDirectoryPath: (OFString*)directoryPath; ++ (instancetype)exceptionWithPath: (OFString*)path; /*! * @brief Initializes an already allocated create directory failed exception. * - * @param directoryPath A string with the path of the directory which couldn't - * be created + * @param path A string with the path of the directory which could not be + * created * @return An initialized create directory failed exception */ -- initWithDirectoryPath: (OFString*)directoryPath; +- initWithPath: (OFString*)path; /*! * @brief Returns a string with the path of the directory which couldn't be * created. * * @return A string with the path of the directory which couldn't be created */ -- (OFString*)directoryPath; +- (OFString*)path; /*! * @brief Returns the errno from when the exception was created. * * @return The errno from when the exception was created */ - (int)errNo; @end