Differences From Artifact [3c148de5f6]:
- File src/exceptions/OFCreateSymbolicLinkFailedException.m — part of check-in [cc4cb0d824] at 2017-05-02 21:10:33 on branch trunk — exceptions: Add nullability specifiers (user: js, size: 2413) [annotate] [blame] [check-ins using]
To Artifact [2ef5f721b8]:
- File
src/exceptions/OFCreateSymbolicLinkFailedException.m
— part of check-in
[4af49a13c3]
at
2017-05-07 20:10:13
on branch trunk
— Small code style change
Casts are now written like types in variable declarations. (user: js, size: 2422) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
19 20 21 22 23 24 25 | #import "OFCreateSymbolicLinkFailedException.h" #import "OFString.h" @implementation OFCreateSymbolicLinkFailedException @synthesize sourcePath = _sourcePath, destinationPath = _destinationPath; @synthesize errNo = _errNo; | | | | | | | | | | 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 |
#import "OFCreateSymbolicLinkFailedException.h"
#import "OFString.h"
@implementation OFCreateSymbolicLinkFailedException
@synthesize sourcePath = _sourcePath, destinationPath = _destinationPath;
@synthesize errNo = _errNo;
+ (instancetype)exceptionWithSourcePath: (OFString *)sourcePath
destinationPath: (OFString *)destinationPath
{
return [[[self alloc] initWithSourcePath: sourcePath
destinationPath: destinationPath] autorelease];
}
+ (instancetype)exceptionWithSourcePath: (OFString *)sourcePath
destinationPath: (OFString *)destinationPath
errNo: (int)errNo
{
return [[[self alloc] initWithSourcePath: sourcePath
destinationPath: destinationPath
errNo: errNo] autorelease];
}
- init
{
OF_INVALID_INIT_METHOD
}
- initWithSourcePath: (OFString *)sourcePath
destinationPath: (OFString *)destinationPath
{
self = [super init];
@try {
_sourcePath = [sourcePath copy];
_destinationPath = [destinationPath copy];
} @catch (id e) {
[self release];
@throw e;
}
return self;
}
- initWithSourcePath: (OFString *)sourcePath
destinationPath: (OFString *)destinationPath
errNo: (int)errNo
{
self = [super init];
@try {
_sourcePath = [sourcePath copy];
_destinationPath = [destinationPath copy];
|
| ︙ | ︙ | |||
82 83 84 85 86 87 88 |
{
[_sourcePath release];
[_destinationPath release];
[super dealloc];
}
| | | 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
{
[_sourcePath release];
[_destinationPath release];
[super dealloc];
}
- (OFString *)description
{
if (_errNo != 0)
return [OFString stringWithFormat:
@"Failed to create symbolic link %@ with destination "
@"%@: %@", _destinationPath, _sourcePath,
of_strerror(_errNo)];
else
return [OFString stringWithFormat:
@"Failed to create symbolic link %@ with destination %@!",
_destinationPath, _sourcePath];
}
@end
|