12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
* LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
* file.
*/
#include "config.h"
#import "OFCopyItemFailedException.h"
#import "OFString.h"
#import "OFURI.h"
@implementation OFCopyItemFailedException
@synthesize sourceURI = _sourceURI, destinationURI = _destinationURI;
@synthesize errNo = _errNo;
+ (instancetype)exception
{
OF_UNRECOGNIZED_SELECTOR
}
+ (instancetype)exceptionWithSourceURI: (OFURI *)sourceURI
destinationURI: (OFURI *)destinationURI
errNo: (int)errNo
{
return [[[self alloc] initWithSourceURI: sourceURI
destinationURI: destinationURI
errNo: errNo] autorelease];
}
- (instancetype)init
{
OF_INVALID_INIT_METHOD
}
- (instancetype)initWithSourceURI: (OFURI *)sourceURI
destinationURI: (OFURI *)destinationURI
errNo: (int)errNo
{
self = [super init];
@try {
_sourceURI = [sourceURI copy];
_destinationURI = [destinationURI copy];
_errNo = errNo;
} @catch (id e) {
[self release];
@throw e;
}
return self;
}
- (void)dealloc
{
[_sourceURI release];
[_destinationURI release];
[super dealloc];
}
- (OFString *)description
{
return [OFString stringWithFormat: @"Failed to copy item %@ to %@: %@",
_sourceURI, _destinationURI, OFStrError(_errNo)];
}
@end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
* LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
* file.
*/
#include "config.h"
#import "OFCopyItemFailedException.h"
#import "OFIRI.h"
#import "OFString.h"
@implementation OFCopyItemFailedException
@synthesize sourceIRI = _sourceIRI, destinationIRI = _destinationIRI;
@synthesize errNo = _errNo;
+ (instancetype)exception
{
OF_UNRECOGNIZED_SELECTOR
}
+ (instancetype)exceptionWithSourceIRI: (OFIRI *)sourceIRI
destinationIRI: (OFIRI *)destinationIRI
errNo: (int)errNo
{
return [[[self alloc] initWithSourceIRI: sourceIRI
destinationIRI: destinationIRI
errNo: errNo] autorelease];
}
- (instancetype)init
{
OF_INVALID_INIT_METHOD
}
- (instancetype)initWithSourceIRI: (OFIRI *)sourceIRI
destinationIRI: (OFIRI *)destinationIRI
errNo: (int)errNo
{
self = [super init];
@try {
_sourceIRI = [sourceIRI copy];
_destinationIRI = [destinationIRI copy];
_errNo = errNo;
} @catch (id e) {
[self release];
@throw e;
}
return self;
}
- (void)dealloc
{
[_sourceIRI release];
[_destinationIRI release];
[super dealloc];
}
- (OFString *)description
{
return [OFString stringWithFormat: @"Failed to copy item %@ to %@: %@",
_sourceIRI, _destinationIRI, OFStrError(_errNo)];
}
@end
|