Differences From Artifact [650806d944]:
- File
src/exceptions/OFCreateSymbolicLinkFailedException.m
— part of check-in
[2f4e0df8be]
at
2017-10-17 00:33:37
on branch trunk
— Do not use implicit method return types
Instead, explicitly declare them, as OF_ASSUME_NONNULL_{BEGIN,END} does
not apply to implicit return types. This means that after this commit,
all init methods have a nonnull return type, as they should have. (user: js, size: 1828) [annotate] [blame] [check-ins using]
To Artifact [797bac35d2]:
- File src/exceptions/OFCreateSymbolicLinkFailedException.m — part of check-in [31e602a476] at 2017-11-13 01:18:34 on branch trunk — Add OFURLHandler (user: js, size: 1637) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
14 15 16 17 18 19 20 21 22 | * file. */ #include "config.h" #import "OFCreateSymbolicLinkFailedException.h" #import "OFString.h" @implementation OFCreateSymbolicLinkFailedException | > < | | | | | | | | | | | | | | | | | 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 77 |
* file.
*/
#include "config.h"
#import "OFCreateSymbolicLinkFailedException.h"
#import "OFString.h"
#import "OFURL.h"
@implementation OFCreateSymbolicLinkFailedException
@synthesize URL = _URL, target = _target, errNo = _errNo;
+ (instancetype)exception
{
OF_UNRECOGNIZED_SELECTOR
}
+ (instancetype)exceptionWithURL: (OFURL *)URL
target: (OFString *)target
errNo: (int)errNo
{
return [[[self alloc] initWithURL: URL
target: target
errNo: errNo] autorelease];
}
- (instancetype)init
{
OF_INVALID_INIT_METHOD
}
- (instancetype)initWithURL: (OFURL *)URL
target: (OFString *)target
errNo: (int)errNo
{
self = [super init];
@try {
_URL = [URL copy];
_target = [target copy];
_errNo = errNo;
} @catch (id e) {
[self release];
@throw e;
}
return self;
}
- (void)dealloc
{
[_URL release];
[_target release];
[super dealloc];
}
- (OFString *)description
{
return [OFString stringWithFormat:
@"Failed to create symbolic link %@ with target %@: %@",
_URL, _target, of_strerror(_errNo)];
}
@end
|