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
|
* LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
* file.
*/
#include "config.h"
#import "OFCreateDirectoryFailedException.h"
#import "OFString.h"
#import "OFURI.h"
@implementation OFCreateDirectoryFailedException
@synthesize URI = _URI, errNo = _errNo;
+ (instancetype)exception
{
OF_UNRECOGNIZED_SELECTOR
}
+ (instancetype)exceptionWithURI: (OFURI *)URI errNo: (int)errNo
{
return [[[self alloc] initWithURI: URI errNo: errNo] autorelease];
}
- (instancetype)init
{
OF_INVALID_INIT_METHOD
}
- (instancetype)initWithURI: (OFURI *)URI errNo: (int)errNo
{
self = [super init];
@try {
_URI = [URI copy];
_errNo = errNo;
} @catch (id e) {
[self release];
@throw e;
}
return self;
}
- (void)dealloc
{
[_URI release];
[super dealloc];
}
- (OFString *)description
{
return [OFString stringWithFormat:
@"Failed to create directory %@: %@", _URI, 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
|
* LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
* file.
*/
#include "config.h"
#import "OFCreateDirectoryFailedException.h"
#import "OFIRI.h"
#import "OFString.h"
@implementation OFCreateDirectoryFailedException
@synthesize IRI = _IRI, errNo = _errNo;
+ (instancetype)exception
{
OF_UNRECOGNIZED_SELECTOR
}
+ (instancetype)exceptionWithIRI: (OFIRI *)IRI errNo: (int)errNo
{
return [[[self alloc] initWithIRI: IRI errNo: errNo] autorelease];
}
- (instancetype)init
{
OF_INVALID_INIT_METHOD
}
- (instancetype)initWithIRI: (OFIRI *)IRI errNo: (int)errNo
{
self = [super init];
@try {
_IRI = [IRI copy];
_errNo = errNo;
} @catch (id e) {
[self release];
@throw e;
}
return self;
}
- (void)dealloc
{
[_IRI release];
[super dealloc];
}
- (OFString *)description
{
return [OFString stringWithFormat:
@"Failed to create directory %@: %@", _IRI, OFStrError(_errNo)];
}
@end
|