View Javadoc

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  import ar.com.jiji.kaya.KayaException;
12  
13  /**
14   * Clase base para las excepciones del paquete.
15   * 
16   * @author lparravicini
17   * @version $Id: QueryException.java 71 2005-09-08 20:03:22Z lparravicini $
18   * 
19   */
20  public class QueryException extends KayaException {
21  
22  	private static final long serialVersionUID = 1L;
23  
24  	public QueryException() {
25  		super();
26  	}
27  
28  	public QueryException(String message) {
29  		super(message);
30  	}
31  
32  	public QueryException(Throwable t) {
33  		super(t);
34  	}
35  
36  	public QueryException(String message, Throwable t) {
37  		super(message, t);
38  	}
39  
40  }