Statistics
| Revision:

root / trunk / libraries / libGPE-KML / src / org / gvsig / gpe / kml / exceptions / KmlHeaderParseException.java @ 10637

History | View | Annotate | Download (2.37 KB)

1
package org.gvsig.gpe.kml.exceptions;
2

    
3
import java.io.File;
4
import java.util.Hashtable;
5
import java.util.Map;
6

    
7
import org.gvsig.exceptions.BaseException;
8

    
9
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
10
 *
11
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
12
 *
13
 * This program is free software; you can redistribute it and/or
14
 * modify it under the terms of the GNU General Public License
15
 * as published by the Free Software Foundation; either version 2
16
 * of the License, or (at your option) any later version.
17
 *
18
 * This program is distributed in the hope that it will be useful,
19
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21
 * GNU General Public License for more details.
22
 *
23
 * You should have received a copy of the GNU General Public License
24
 * along with this program; if not, write to the Free Software
25
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
26
 *
27
 * For more information, contact:
28
 *
29
 *  Generalitat Valenciana
30
 *   Conselleria d'Infraestructures i Transport
31
 *   Av. Blasco Ib??ez, 50
32
 *   46010 VALENCIA
33
 *   SPAIN
34
 *
35
 *      +34 963862235
36
 *   gvsig@gva.es
37
 *      www.gvsig.gva.es
38
 *
39
 *    or
40
 *
41
 *   IVER T.I. S.A
42
 *   Salamanca 50
43
 *   46005 Valencia
44
 *   Spain
45
 *
46
 *   +34 963163400
47
 *   dac@iver.es
48
 */
49
/* CVS MESSAGES:
50
 *
51
 * $Id: KmlHeaderParseException.java 10637 2007-03-07 08:19:11Z jorpiell $
52
 * $Log$
53
 * Revision 1.1  2007-03-07 08:19:10  jorpiell
54
 * Pasadas las clases de KML de libGPE-GML a libGPE-KML
55
 *
56
 * Revision 1.1  2007/02/28 11:48:31  csanchez
57
 * *** empty log message ***
58
 *
59
 * Revision 1.1  2007/02/20 10:53:20  jorpiell
60
 * A?adidos los proyectos de kml y gml antiguos
61
 *
62
 * Revision 1.1  2007/02/12 13:49:18  jorpiell
63
 * A?adido el driver de KML
64
 *
65
 *
66
 */
67
/**
68
 * @author Jorge Piera Llodr? (piera_jor@gva.es)
69
 */
70
public class KmlHeaderParseException extends BaseException {
71
        private static final long serialVersionUID = 2601117350679974062L;
72
        private File m_File = null;
73
        
74
        public KmlHeaderParseException() {                
75
                init();                
76
        }
77
        
78
        public KmlHeaderParseException(Throwable exception) {
79
                init();
80
                initCause(exception);
81
        }
82
        
83
        private void init() {
84
                messageKey = "error_kml_header";
85
                formatString = "Error parsing the Kml header file";
86
                code = serialVersionUID;                
87
        }
88
        
89
        /*
90
         *  (non-Javadoc)
91
         * @see org.gvsig.exceptions.BaseException#values()
92
         */
93
        protected Map values() {
94
                return new Hashtable();
95
        }
96
}