Add SL3Statement

FossilOrigin-Name: cc03d24ff3ef295e0a9769b20587ac48cf5172996c09b5420e59eb4407765d63
This commit is contained in:
Jonathan Schleifer 2020-09-01 01:43:07 +00:00
parent f9bc4936e4
commit 182bd2136b
16 changed files with 774 additions and 17 deletions

View file

@ -23,10 +23,10 @@
#import "SL3OpenFailedException.h"
@implementation SL3OpenFailedException
@synthesize path = _Path, flags = _flags;
@synthesize path = _path, flags = _flags;
+ (instancetype)exceptionWithConnection: (SL3Connection *)connection
errorCode: (int)errorCode OF_UNAVAILABLE
errorCode: (int)errorCode
{
OF_UNRECOGNIZED_SELECTOR
}
@ -41,7 +41,7 @@
}
- (instancetype)initWithConnection: (SL3Connection *)connection
errorCode: (int)errorCode OF_UNAVAILABLE
errorCode: (int)errorCode
{
OF_INVALID_INIT_METHOD
}
@ -63,4 +63,11 @@
return self;
}
- (void)dealloc
{
[_path release];
[super dealloc];
}
@end