1 /************************************************************************* 2 * * 3 * EJBCA: The OpenSource Certificate Authority * 4 * * 5 * This software is free software; you can redistribute it and/or * 6 * modify it under the terms of the GNU Lesser General Public * 7 * License as published by the Free Software Foundation; either * 8 * version 2.1 of the License, or any later version. * 9 * * 10 * See terms of license at gnu.org. * 11 * * 12 *************************************************************************/ 13 14 package org.ejbca.util.query; 15 16 /** 17 * An exception thrown if Query strucure is illegal. 18 * 19 * @author Philip Vendil 20 * @version $Id: IllegalQueryException.java,v 1.1 2006/01/17 20:32:19 anatom Exp $ 21 */ 22 public class IllegalQueryException extends java.lang.Exception { 23 /** 24 * Creates a new instance of <code>IllegalQueryException</code> without detail message. 25 */ 26 public IllegalQueryException() { 27 super(); 28 } 29 30 /** 31 * Constructs an instance of <code>IllegalQueryException</code> with the specified detail 32 * message. 33 * 34 * @param msg the detail message. 35 */ 36 public IllegalQueryException(String msg) { 37 super(msg); 38 } 39 } 40