Clean up error code related classes

This commit is contained in:
김선우
2025-01-17 03:56:26 +09:00
parent fcadc2f825
commit 7e78ec448b
7 changed files with 163 additions and 32 deletions

View File

@@ -1,5 +1,6 @@
package org.github.tursodatabase;
import org.github.tursodatabase.core.LimboConnection;
import org.junit.jupiter.api.Test;
import java.sql.Connection;

View File

@@ -36,7 +36,7 @@ public class LimboDBTest {
LimboDB.load();
LimboDB db = LimboDB.create("jdbc:sqlite:" + dbPath, dbPath);
final int limboExceptionCode = LimboErrorCode.ETC.code;
final int limboExceptionCode = LimboErrorCode.LIMBO_ETC.code;
try {
db.throwJavaException(limboExceptionCode);
} catch (Exception e) {