16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#import "OFException.h"
OF_ASSUME_NONNULL_BEGIN
@class OFURL;
/**
* @class OFLinkFailedException \
* OFLinkFailedException.h ObjFW/OFLinkFailedException.h
*
* @brief An exception indicating that creating a link failed.
*/
@interface OFLinkFailedException: OFException
{
OFURL *_sourceURL, *_destinationURL;
int _errNo;
OF_RESERVE_IVARS(OFLinkFailedException, 4)
}
/**
* @brief A URL with the source for the link.
*/
@property (readonly, nonatomic) OFURL *sourceURL;
|
|
|
|
|
|
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#import "OFException.h"
OF_ASSUME_NONNULL_BEGIN
@class OFURL;
/**
* @class OFLinkItemFailedException \
* OFLinkItemFailedException.h ObjFW/OFLinkItemFailedException.h
*
* @brief An exception indicating that creating a link failed.
*/
@interface OFLinkItemFailedException: OFException
{
OFURL *_sourceURL, *_destinationURL;
int _errNo;
OF_RESERVE_IVARS(OFLinkItemFailedException, 4)
}
/**
* @brief A URL with the source for the link.
*/
@property (readonly, nonatomic) OFURL *sourceURL;
|