ObjFW  Diff

Differences From Artifact [b5be061b91]:

To Artifact [95db665c33]:


16
17
18
19
20
21
22




23
24
25
26
27
28
29

#include <errno.h>

#import "OFException.h"

#ifdef OF_HAVE_SYMLINK
/*!




 * @brief An exception indicating that creating a symbolic link failed.
 */
@interface OFCreateSymbolicLinkFailedException: OFException
{
	OFString *_sourcePath, *_destinationPath;
	int _errNo;
}







>
>
>
>







16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33

#include <errno.h>

#import "OFException.h"

#ifdef OF_HAVE_SYMLINK
/*!
 * @class OFCreateSymbolicLinkFailedException \
 *	  OFCreateSymbolicLinkFailedException.h \
 *	  ObjFW/OFCreateSymbolicLinkFailedException.h
 *
 * @brief An exception indicating that creating a symbolic link failed.
 */
@interface OFCreateSymbolicLinkFailedException: OFException
{
	OFString *_sourcePath, *_destinationPath;
	int _errNo;
}