Differences From Artifact [d4466ea6fb]:
- File src/exceptions/OFHTTPRequestFailedException.m — part of check-in [74eeea199c] at 2011-09-11 00:03:44 on branch trunk — Make use of the fact that -[retain] and -[release] must not throw. (user: js, size: 2179) [annotate] [blame] [check-ins using]
To Artifact [70197ef817]:
- File
src/exceptions/OFHTTPRequestFailedException.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: 2204) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
20 21 22 23 24 25 26 | #import "OFString.h" #import "OFHTTPRequest.h" #import "OFAutoreleasePool.h" #import "OFNotImplementedException.h" @implementation OFHTTPRequestFailedException | | | | | | | | | | 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 |
#import "OFString.h"
#import "OFHTTPRequest.h"
#import "OFAutoreleasePool.h"
#import "OFNotImplementedException.h"
@implementation OFHTTPRequestFailedException
+ exceptionWithClass: (Class)class_
HTTPRequest: (OFHTTPRequest*)request
result: (OFHTTPRequestResult*)result
{
return [[[self alloc] initWithClass: class_
HTTPRequest: request
result: result] autorelease];
}
- initWithClass: (Class)class_
{
Class c = isa;
[self release];
@throw [OFNotImplementedException exceptionWithClass: c
selector: _cmd];
}
- initWithClass: (Class)class_
HTTPRequest: (OFHTTPRequest*)request
result: (OFHTTPRequestResult*)result_
{
self = [super initWithClass: class_];
|
| ︙ | ︙ |