Revision 23287

View differences:

branches/v2_0_0_prep/libraries/libFMap_data/src/org/gvsig/fmap/data/index/IndexStore.java
33 33

  
34 34
import org.gvsig.fmap.data.feature.FeatureStore;
35 35
import org.gvsig.fmap.data.feature.FeatureType;
36
import org.gvsig.fmap.data.index.spatial.SpatialIndex;
36 37

  
37 38
/**
38 39
 * This class provides access to a FeatureStore local indexes.
branches/v2_0_0_prep/libraries/libFMap_data/src/org/gvsig/fmap/data/index/IndexException.java
1
/*
2
 * Created on 28-abr-2006
3
 *
4
 * gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
5
 *
6
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
7
 *
8
 * This program is free software; you can redistribute it and/or
9
 * modify it under the terms of the GNU General Public License
10
 * as published by the Free Software Foundation; either version 2
11
 * of the License, or (at your option) any later version.
12
 *
13
 * This program is distributed in the hope that it will be useful,
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 * GNU General Public License for more details.
17
 *
18
 * You should have received a copy of the GNU General Public License
19
 * along with this program; if not, write to the Free Software
20
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
21
 *
22
 * For more information, contact:
23
 *
24
 *  Generalitat Valenciana
25
 *   Conselleria d'Infraestructures i Transport
26
 *   Av. Blasco Ib??ez, 50
27
 *   46010 VALENCIA
28
 *   SPAIN
29
 *
30
 *      +34 963862235
31
 *   gvsig@gva.es
32
 *      www.gvsig.gva.es
33
 *
34
 *    or
35
 *
36
 *   IVER T.I. S.A
37
 *   Salamanca 50
38
 *   46005 Valencia
39
 *   Spain
40
 *
41
 *   +34 963163400
42
 *   dac@iver.es
43
 */
44
/* CVS MESSAGES:
1
/* gvSIG. Geographic Information System of the Valencian Government
45 2
*
46
* $Id: SpatialIndexException.java 12380 2007-06-27 20:17:30Z azabala $
47
* $Log$
48
* Revision 1.3  2007-06-27 20:17:30  azabala
49
* new spatial index (rix)
50
*
51
* Revision 1.2  2007/03/06 17:08:59  caballero
52
* Exceptions
53
*
54
* Revision 1.1  2006/05/01 18:38:41  azabala
55
* primera version en cvs del api de indices espaciales
56
*
57
*
3
* Copyright (C) 2007-2008 Infrastructures and Transports Department
4
* of the Valencian Government (CIT)
5
* 
6
* This program is free software; you can redistribute it and/or
7
* modify it under the terms of the GNU General Public License
8
* as published by the Free Software Foundation; either version 2
9
* of the License, or (at your option) any later version.
10
* 
11
* This program is distributed in the hope that it will be useful,
12
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
* GNU General Public License for more details.
15
* 
16
* You should have received a copy of the GNU General Public License
17
* along with this program; if not, write to the Free Software
18
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
19
* MA  02110-1301, USA.
20
* 
58 21
*/
22

  
23
/*
24
* AUTHORS (In addition to CIT):
25
* 2008 {{Company}}   {{Task}}
26
*/
27

  
59 28
package org.gvsig.fmap.data.index;
60 29

  
61 30
import java.util.HashMap;
......
65 34

  
66 35
/**
67 36
 * 
68
 * @author jyarza
37
 * @author azabala
38
 * @author vcaballero
39
 * @author jiyarza
69 40
 */
70 41
public class IndexException extends BaseException {
71 42
	
......
80 51
	 * @param e
81 52
	 */
82 53
	public IndexException(Exception e) {
83
		messageKey = MESSAGE_KEY;
84
		formatString = FORMAT_STRING;
85
		code = serialVersionUID;
86
		
87
		if (e != null) {
88
			initCause(e);
89
		}
54
		super(FORMAT_STRING, e, MESSAGE_KEY, serialVersionUID);
90 55
	}
91 56
	
92 57
	/*

Also available in: Unified diff