orbeon-bluedb-integration/integration-module/src/main/java/hycom/exceptions/DbException.java

11 lines
164 B
Java

package hycom.exceptions;
/**
*
*/
public class DbException extends Exception {
public DbException(String s, Throwable throwable) {
super(s, throwable);
}
}