![JAR search and dependency download from the Maven repository](/logo.png)
org.ibatis.client.TooManyResultException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jbatis Show documentation
Show all versions of jbatis Show documentation
The jBATIS persistence framework will help you to significantly reduce the amount of Java code that you normally need to access a relational database. iBATIS simply maps JavaBeans to SQL statements using a very simple XML descriptor.
The newest version!
/*-
* Copyright (c) 2007-2008 Owlgroup.
* All rights reserved.
* TooManyResultException.java
* Date: 2008-10-21
* Author: Song Sun
*/
package org.ibatis.client;
import java.sql.SQLException;
/**
* TooManyResultException
*
* Date: 2008-10-21, 13:59:28 +0800
*
* @author Song Sun
* @version 1.0
*/
public class TooManyResultException extends SQLException {
/**
* serialVersionUID
*/
private static final long serialVersionUID = -7499818815190642587L;
public TooManyResultException(int resultSize) {
super("executeQueryForObject returned too many results.", null,
resultSize);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy