ObjFW  Diff

Differences From Artifact [8c04e72357]:

To Artifact [e961218ed3]:


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
77
78
79
80
81
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
77
78
79
80
81







-
+

-
+














-
+




-
+











-
+







-
+


-
+

-
+








#import "OFRemoveItemFailedException.h"
#import "OFString.h"

#import "common.h"

@implementation OFRemoveItemFailedException
+ (instancetype)exceptionWithItemPath: (OFString*)itemPath
+ (instancetype)exceptionWithPath: (OFString*)path
{
	return [[[self alloc] initWithItemPath: itemPath] autorelease];
	return [[[self alloc] initWithPath: path] autorelease];
}

- init
{
	@try {
		[self doesNotRecognizeSelector: _cmd];
	} @catch (id e) {
		[self release];
		@throw e;
	}

	abort();
}

- initWithItemPath: (OFString*)itemPath
- initWithPath: (OFString*)path
{
	self = [super init];

	@try {
		_itemPath = [itemPath copy];
		_path = [path copy];
		_errNo = GET_ERRNO;
	} @catch (id e) {
		[self release];
		@throw e;
	}

	return self;
}

- (void)dealloc
{
	[_itemPath release];
	[_path release];

	[super dealloc];
}

- (OFString*)description
{
	return [OFString stringWithFormat:
	    @"Failed to remove item at path %@! " ERRFMT, _itemPath, ERRPARAM];
	    @"Failed to remove item at path %@! " ERRFMT, _path, ERRPARAM];
}

- (OFString*)itemPath
- (OFString*)path
{
	OF_GETTER(_itemPath, false)
	OF_GETTER(_path, false)
}

- (int)errNo
{
	return _errNo;
}
@end