fix: dev-web - remove throw function on DAO constructor

This commit is contained in:
kmitresse
2024-03-21 14:15:40 +01:00
parent 1468e72dd9
commit 7ea5af9751
@@ -22,9 +22,7 @@ public abstract class DAO<D> {
*
* @throws DAOException si une erreur survient lors de la création du DAO
*/
public DAO() throws DAOException {
throw new DAOException("DAO not implemented");
}
public DAO() throws DAOException {}
/**
* Retourne l'objet {@link D} en fonction de son identifiant