accounting-dashboard-harves.../src/main/java/org/gcube/dataharvest/dao/DaoException.java

14 lines
218 B
Java

package org.gcube.dataharvest.dao;
public class DaoException extends Exception {
public DaoException() {
super();
}
public DaoException(String message, Throwable throwable) {
super(message, throwable);
}
}