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 OFDeleteDirectoryFailedException
+ exceptionWithClass: (Class)class_
path: (OFString*)path_
{
return [[[self alloc] initWithClass: class_
path: path_] 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 OFDeleteDirectoryFailedException
+ (instancetype)exceptionWithClass: (Class)class_
path: (OFString*)path_
{
return [[[self alloc] initWithClass: class_
path: path_] autorelease];
}
- initWithClass: (Class)class_
{
|