@@ -40,11 +40,11 @@ /** * The OFException class is the base class for all exceptions in ObjFW. * * IMPORTANT: Exceptions do NOT use OFAutoreleasePools and can't be autoreleased - * either! You have to make sure to dealloc the exception in your @catch block! + * either! You have to make sure to dealloc the exception in your \@catch block! */ @interface OFException: OFObject { Class class_; OFString *string; @@ -559,12 +559,12 @@ int err; } /** * \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 src The source for the link + * \param dest The destination for the link * \return A new link failed exception */ + newWithClass: (Class)class_ source: (OFString*)src destination: (OFString*)dest; @@ -571,12 +571,12 @@ /** * 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 src The source for the link + * \param dest The destination for the link * \return An initialized link failed exception */ - initWithClass: (Class)class_ source: (OFString*)src destination: (OFString*)dest; @@ -607,12 +607,12 @@ int err; } /** * \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 src The source for the symlink + * \param dest The destination for the symlink * \return A new symlink failed exception */ + newWithClass: (Class)class_ source: (OFString*)src destination: (OFString*)dest; @@ -619,12 +619,12 @@ /** * 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 src The source for the symlink + * \param dest The destination for the symlink * \return An initialized symlink failed exception */ - initWithClass: (Class)class_ source: (OFString*)src destination: (OFString*)dest;