Rename ...Dao -> ...Repository

This commit is contained in:
P0nk
2024-09-14 12:06:09 +02:00
parent abbec8120e
commit 08eeeb54dc
17 changed files with 103 additions and 103 deletions

View File

@@ -1,6 +1,6 @@
package testutil;
import database.DaoException;
import database.DatabaseException;
public class AnyValues {
@@ -16,7 +16,7 @@ public class AnyValues {
return 4;
}
public static DaoException daoException() {
return new DaoException(string(), new RuntimeException());
public static DatabaseException dbException() {
return new DatabaseException(string(), new RuntimeException());
}
}