Differences From Artifact [f07b495d09]:
- File src/exceptions/OFNotConnectedException.m — part of check-in [c7adbcf399] at 2012-10-02 11:00:04 on branch trunk — Clean up properties in exceptions. (user: js, size: 1549) [annotate] [blame] [check-ins using]
To Artifact [497115d130]:
- File src/exceptions/OFNotConnectedException.m — part of check-in [7239333455] at 2012-10-03 15:41:10 on branch trunk — Move definition of restricted to OFObject.h. (user: js, size: 1569) [annotate] [blame] [check-ins using]
| ︙ | |||
17 18 19 20 21 22 23 24 25 26 27 28 29 30 | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | + + |
#include "config.h"
#import "OFNotConnectedException.h"
#import "OFString.h"
#import "OFTCPSocket.h"
#import "OFNotImplementedException.h"
#import "common.h"
@implementation OFNotConnectedException
+ exceptionWithClass: (Class)class_
socket: (OFStreamSocket*)socket
{
return [[[self alloc] initWithClass: class_
socket: socket] autorelease];
|
| ︙ |