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

27 lines
479 B
Java

package org.gcube.dataharvest.dao;
/**
* @author Eric Perrone (ISTI - CNR)
* @author Luca Frosini (ISTI - CNR)
*/
public class DaoException extends Exception {
/**
* Generated Serial Version UID
*/
private static final long serialVersionUID = -6302570066137502483L;
public DaoException() {
super();
}
public DaoException(String message) {
super(message);
}
public DaoException(String message, Throwable throwable) {
super(message, throwable);
}
}