24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
{
OFString *sourcePath;
OFString *destinationPath;
int errNo;
}
# ifdef OF_HAVE_PROPERTIES
@property (readonly, assign) OFString *sourcePath;
@property (readonly, assign) OFString *destinationPath;
@property (readonly) int errNo;
# endif
/**
* \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
|
|
|
|
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
{
OFString *sourcePath;
OFString *destinationPath;
int errNo;
}
# ifdef OF_HAVE_PROPERTIES
@property (readonly, copy, nonatomic) OFString *sourcePath;
@property (readonly, copy, nonatomic) OFString *destinationPath;
@property (readonly) int errNo;
# endif
/**
* \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
|