23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
{
OFString *sourcePath;
OFString *destinationPath;
int errNo;
}
#ifdef OF_HAVE_PROPERTIES
@property (readonly, nonatomic) OFString *sourcePath;
@property (readonly, nonatomic) OFString *destinationPath;
@property (readonly) int errNo;
#endif
/**
* \param class_ The class of the object which caused the exception
* \param source The original path
* \param destination The new path
|
|
|
|
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
{
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 original path
* \param destination The new path
|