/*
 * JBoss, the OpenSource J2EE webOS
 * 
 * Distributable under LGPL license. See terms of license at gnu.org.
 */

package javax.emb;

/**
 * This exception is thrown during <code>MetaDataEntityLocalHome.query()</code>
 * whenever a specified option is not valid for the specified query language.
 * 
 * @version <tt>$Revision: 1.1 $</tt>
 * @author <a href="mailto:ricardoarguello@users.sourceforge.net">Ricardo
 *         Argüello</a>
 */
public class IllegalOptionException extends MediaException
{
   /**
    * @see javax.emb.MediaException()
    */
   public IllegalOptionException()
   {
      super();
   }

   /**
    * @see javax.emb.MediaException(String)
    */
   public IllegalOptionException(String message)
   {
      super(message);
   }

   /**
    * @see javax.emb.MediaException(String, Throwable)
    */
   public IllegalOptionException(String message, Throwable cause)
   {
      super(message, cause);
   }

   /**
    * @see javax.emb.MediaException(Throwable)
    */
   public IllegalOptionException(Throwable cause)
   {
      super(cause);
   }
}