17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
#include "config.h"
#import "OFAlreadyConnectedException.h"
#import "OFString.h"
#import "OFTCPSocket.h"
#import "OFNotImplementedException.h"
@implementation OFAlreadyConnectedException
+ exceptionWithClass: (Class)class_
socket: (OFTCPSocket*)socket
{
return [[[self alloc] initWithClass: class_
socket: socket] autorelease];
|
>
>
|
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#include "config.h"
#import "OFAlreadyConnectedException.h"
#import "OFString.h"
#import "OFTCPSocket.h"
#import "OFNotImplementedException.h"
#import "common.h"
@implementation OFAlreadyConnectedException
+ exceptionWithClass: (Class)class_
socket: (OFTCPSocket*)socket
{
return [[[self alloc] initWithClass: class_
socket: socket] autorelease];
|