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