@@ -20,44 +20,42 @@ /*! * @brief An exception indicating that creating a link failed. */ @interface OFLinkFailedException: 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 link failed exception. * * @param class_ The class of the object which caused the exception - * @param source The source for the link - * @param destination The destination for the link + * @param sourcePath The source for the link + * @param destinationPath The destination for the link * @return A new, autoreleased link failed exception */ + (instancetype)exceptionWithClass: (Class)class_ - sourcePath: (OFString*)source - destinationPath: (OFString*)destination; + sourcePath: (OFString*)sourcePath + destinationPath: (OFString*)destinationPath; /*! * @brief Initializes an already allocated link failed exception. * * @param class_ The class of the object which caused the exception - * @param source The source for the link - * @param destination The destination for the link + * @param sourcePath The source for the link + * @param destinationPath The destination for the link * @return An initialized link 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