001 /* 002 @license.text@ 003 */ 004 package biz.hammurapi.sql; 005 006 import java.sql.SQLException; 007 008 009 /** 010 * Contains handler of empty ResultSet 011 * @author Pavel Vlasov 012 * @version $Revision: 1.2 $ 013 */ 014 public interface RowProcessorEx extends RowProcessor { 015 /** 016 * This method is invoked if there've been no rows in 017 * the ResultSet 018 * @throws SQLException 019 */ 020 void onEmptyResultSet() throws SQLException; 021 }