20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#import "OFString.h"
#import "OFNotImplementedException.h"
#import "common.h"
@implementation OFUnsupportedVersionException
+ exceptionWithClass: (Class)class_
version: (OFString*)version
{
return [[[self alloc] initWithClass: class_
version: version] autorelease];
}
- initWithClass: (Class)class_
{
|
|
|
|
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#import "OFString.h"
#import "OFNotImplementedException.h"
#import "common.h"
@implementation OFUnsupportedVersionException
+ (instancetype)exceptionWithClass: (Class)class_
version: (OFString*)version
{
return [[[self alloc] initWithClass: class_
version: version] autorelease];
}
- initWithClass: (Class)class_
{
|