Update connect method in SimpleDatabaseManager.java

This commit is contained in:
Riley Schneider
2025-12-03 18:26:13 +01:00
parent 382aad70f7
commit d3488f1f1c

View File

@@ -26,7 +26,7 @@ public class SimpleDatabaseManager<E> implements DatabaseManager<E> {
} }
@Override @Override
public void connect() { public void connect() throws SQLException {
//... throw new SQLException("");
} }
} }