org.sfm.jdbc.RethrowJdbcMapperErrorHandler Maven / Gradle / Ivy
package org.sfm.jdbc;
public class RethrowJdbcMapperErrorHandler implements JdbcMapperErrorHandler {
@Override
public void handlerError(Throwable t, Object target) {
throw new HandlerErrorException("Handler has error " + t.getMessage() + " on " + target, t);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy