@@ -1,9 +1,9 @@ /* * Copyright (c) 2020, Jonathan Schleifer * - * https://fossil.nil.im/objsqlite + * https://fossil.nil.im/objsqlite3 * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice is present in all copies. * @@ -18,23 +18,23 @@ * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ -#import "SLException.h" +#import "SL3Exception.h" -@implementation SLException +@implementation SL3Exception @synthesize connection = _connection, errorCode = _errorCode; -+ (instancetype)exceptionWithConnection: (SLConnection *)connection ++ (instancetype)exceptionWithConnection: (SL3Connection *)connection errorCode: (int)errorCode { return [[[self alloc] initWithConnection: connection errorCode: errorCode] autorelease]; } -- (instancetype)initWithConnection: (SLConnection *)connection +- (instancetype)initWithConnection: (SL3Connection *)connection errorCode: (int)errorCode { self = [super init]; _connection = [connection retain];