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

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