@@ -20,44 +20,42 @@ /*! * @brief An exception indicating that creating a symlink failed. */ @interface OFSymlinkFailedException: OFException { - OFString *sourcePath; - OFString *destinationPath; - int errNo; + OFString *_sourcePath, *_destinationPath; + int _errNo; } #ifdef OF_HAVE_PROPERTIES -@property (readonly, copy, nonatomic) OFString *sourcePath; -@property (readonly, copy, nonatomic) OFString *destinationPath; +@property (readonly, copy, nonatomic) OFString *sourcePath, *destinationPath; @property (readonly) int errNo; #endif /*! * @brief Creates a new, autoreleased symlink failed exception. * * @param class_ The class of the object which caused the exception - * @param source The source for the symlink - * @param destination The destination for the symlink + * @param sourcePath The source for the symlink + * @param destinationPath The destination for the symlink * @return A new, autoreleased symlink failed exception */ + (instancetype)exceptionWithClass: (Class)class_ - sourcePath: (OFString*)source - destinationPath: (OFString*)destination; + sourcePath: (OFString*)sourcePath + destinationPath: (OFString*)destinationPath; /*! * @brief Initializes an already allocated symlink failed exception. * * @param class_ The class of the object which caused the exception - * @param source The source for the symlink - * @param destination The destination for the symlink + * @param sourcePath The source for the symlink + * @param destinationPath The destination for the symlink * @return An initialized symlink failed exception */ - initWithClass: (Class)class_ - sourcePath: (OFString*)source - destinationPath: (OFString*)destination; + sourcePath: (OFString*)sourcePath + destinationPath: (OFString*)destinationPath; /*! * @brief Returns the errno from when the exception was created. * * @return The errno from when the exception was created