All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.ibatis.client.TooManyResultException Maven / Gradle / Ivy

Go to download

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