@@ -27,14 +27,19 @@ { OFString *_path; int _errNo; } -#ifdef OF_HAVE_PROPERTIES +/*! + * The path of the directory which couldn't be created. + */ @property (readonly, copy) OFString *path; + +/*! + * The errno of the error that occurred. + */ @property (readonly) int errNo; -#endif /*! * @brief Creates a new, autoreleased create directory failed exception. * * @param path A string with the path of the directory which could not be @@ -53,21 +58,6 @@ * @param errNo The errno of the error that occurred * @return An initialized create directory failed exception */ - initWithPath: (OFString*)path errNo: (int)errNo; - -/*! - * @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*)path; - -/*! - * @brief Returns the errno of the error that occurred. - * - * @return The errno of the error that occurred - */ -- (int)errNo; @end