Add NoteDao, used by NoteActionHandler to delete note when read

This commit is contained in:
P0nk
2022-12-26 15:55:28 +01:00
parent 188eb74a70
commit 605f2e212e
6 changed files with 147 additions and 26 deletions

View File

@@ -0,0 +1,10 @@
package database;
import org.jdbi.v3.core.JdbiException;
public class DaoException extends JdbiException {
public DaoException(String message, Throwable cause) {
super(message, cause);
}
}