ObjFW  Diff

Differences From Artifact [31e546c773]:

To Artifact [afa7c99661]:


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
82
83
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 "OFCreateDirectoryFailedException.h"
#import "OFString.h"

#import "common.h"

@implementation OFCreateDirectoryFailedException
+ (instancetype)exceptionWithDirectoryPath: (OFString*)directoryPath
+ (instancetype)exceptionWithPath: (OFString*)path
{
	return [[[self alloc]
	return [[[self alloc] initWithPath: path] autorelease];
	    initWithDirectoryPath: directoryPath] autorelease];
}

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

	abort();
}

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

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

	return self;
}

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

	[super dealloc];
}

- (OFString*)description
{
	return [OFString stringWithFormat:
	    @"Failed to create directory %@! " ERRFMT,
	    @"Failed to create directory %@! " ERRFMT, _path, ERRPARAM];
	    _directoryPath, ERRPARAM];
}

- (OFString*)directoryPath
- (OFString*)path
{
	OF_GETTER(_directoryPath, false)
	OF_GETTER(_path, false)
}

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