![JAR search and dependency download from the Maven repository](/logo.png)
nyla.solutions.global.exception.TooManyRowsException Maven / Gradle / Ivy
package nyla.solutions.global.exception;
import nyla.solutions.global.exception.TooManyRowsException;
/**
* System exception when too many rows where updated in the database.
* @author Gregory Green
* @version 1.0
*/
public class TooManyRowsException extends DataException
{
/**
* Sets the exception message to "Duplicate Row Exception"
*/
public TooManyRowsException()
{
super("Too Many Rows");
}//----------------------------------------------
public TooManyRowsException(String aMessage)
{
super(aMessage);
}//----------------------------------------------
static final long serialVersionUID = TooManyRowsException.class.getName()
.hashCode();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy