1 /******************************************************************************* 2 * Copyright (c) 2005 MOST S.A. 3 * All rights reserved. This program and the accompanying materials 4 * are made available under the terms of the ? License 5 * which accompanies this distribution, and is available at 6 * http://www.grupomost.com/legal/????.html 7 * 8 *******************************************************************************/ 9 package ar.com.jiji.kaya.query; 10 11 /** 12 * Se usa cuando una consulta esta mal escrita y no puede ser parseada. 13 * 14 * @author lparravicini 15 * @version $Id: QueryParseException.java 71 2005-09-08 20:03:22Z lparravicini $ 16 * 17 */ 18 public class QueryParseException extends QueryException { 19 20 private static final long serialVersionUID = 1L; 21 22 public QueryParseException(String token) { 23 super("El criterio " + token + " esta mal formado."); 24 } 25 26 }