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

net.sf.jagg.exception.ParseException Maven / Gradle / Ivy

Go to download

jAgg is a Java 5.0 API that supports “group by” operations on Lists of Java objects: aggregate operations such as count, sum, max, min, avg, and many more. It also allows custom aggregate operations.

The newest version!
package net.sf.jagg.exception;

/**
 * An ParseException is a JaggException that
 * indicates that a specification that needed to be parsed was invalid.
 *
 * @author Randy Gettman
 * @since 0.9.0
 */
public class ParseException extends JaggException
{
   /**
    * Create a ParseException.
    */
   public ParseException()
   {
      super();
   }

   /**
    * Create a ParseException with the given message.
    * @param message The message.
    */
   public ParseException(String message)
   {
      super(message);
   }

   /**
    * Create a ParseException.
    * @param cause The cause.
    */
   public ParseException(Throwable cause)
   {
      super(cause);
   }

   /**
    * Create a ParseException with the given message.
    * @param message The message.
    * @param cause The cause.
    */
   public ParseException(String message, Throwable cause)
   {
      super(message, cause);
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy