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

net.sf.jagg.exception.PropertyAccessException 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;

/**
 * A PropertyAccessException is a JaggException that
 * indicates that there was a problem accessing a property of a data value.
 *
 * @author Randy Gettman
 * @since 0.9.0
 */
public class PropertyAccessException extends JaggException
{
   /**
    * Create a PropertyAccessException.
    */
   public PropertyAccessException()
   {
      super();
   }

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy