Differences From Artifact [77f18c4a57]:
- File src/exceptions/OFLinkFailedException.m — part of check-in [6f18cbc1ea] at 2011-09-11 00:06:10 on branch trunk — Fix missing @try. (user: js, size: 1893) [annotate] [blame] [check-ins using]
To Artifact [f3dc677892]:
- File
src/exceptions/OFLinkFailedException.m
— part of check-in
[e1e7ffa903]
at
2011-09-22 23:25:42
on branch trunk
— Exceptions are now autoreleased.
This is safe as an "exception loop" can't happen, since if allocating
an exception fails, it throws an OFAllocFailedException which is
preallocated and can always be thrown.So, the worst case would be that an autorelease of an exception fails,
triggering an OFOutOfMemoryException for which there is no memory,
resulting in an OFAllocFailedException to be thrown. (user: js, size: 1916) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
21 22 23 24 25 26 27 | #import "OFNotImplementedException.h" #import "common.h" #ifndef _WIN32 @implementation OFLinkFailedException | | | | | | | | | | 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 | #import "OFNotImplementedException.h" #import "common.h" #ifndef _WIN32 @implementation OFLinkFailedException + exceptionWithClass: (Class)class_ sourcePath: (OFString*)src destinationPath: (OFString*)dest { return [[[self alloc] initWithClass: class_ sourcePath: src destinationPath: dest] autorelease]; } - initWithClass: (Class)class_ { Class c = isa; [self release]; @throw [OFNotImplementedException exceptionWithClass: c selector: _cmd]; } - initWithClass: (Class)class_ sourcePath: (OFString*)src destinationPath: (OFString*)dest { self = [super initWithClass: class_]; |
︙ | ︙ |