2 Commits

Author SHA1 Message Date
Riley Schneider
d3488f1f1c Update connect method in SimpleDatabaseManager.java 2025-12-03 18:26:13 +01:00
Riley Schneider
382aad70f7 Updated gitignore 2025-12-03 18:24:42 +01:00
2 changed files with 4 additions and 3 deletions

1
.gitignore vendored
View File

@@ -1 +1,2 @@
build/
.gradle/

View File

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