Statistics
| Revision:

svn-gvsig-desktop / tags / v2_0_0_Build_2020 / libraries / libRemoteServices / src / org / gvsig / remoteclient / wfs / exceptions / WFSException.java @ 33910

History | View | Annotate | Download (2.27 KB)

1 29673 jpiera
package org.gvsig.remoteclient.wfs.exceptions;
2 10246 jorpiell
3
import java.util.Hashtable;
4
import java.util.Map;
5
6
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
7
 *
8
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
9
 *
10
 * This program is free software; you can redistribute it and/or
11
 * modify it under the terms of the GNU General Public License
12
 * as published by the Free Software Foundation; either version 2
13
 * of the License, or (at your option) any later version.
14
 *
15
 * This program is distributed in the hope that it will be useful,
16
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18
 * GNU General Public License for more details.
19
 *
20
 * You should have received a copy of the GNU General Public License
21
 * along with this program; if not, write to the Free Software
22
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
23
 *
24
 * For more information, contact:
25
 *
26
 *  Generalitat Valenciana
27
 *   Conselleria d'Infraestructures i Transport
28
 *   Av. Blasco Ib??ez, 50
29
 *   46010 VALENCIA
30
 *   SPAIN
31
 *
32
 *      +34 963862235
33
 *   gvsig@gva.es
34
 *      www.gvsig.gva.es
35
 *
36
 *    or
37
 *
38
 *   IVER T.I. S.A
39
 *   Salamanca 50
40
 *   46005 Valencia
41
 *   Spain
42
 *
43
 *   +34 963163400
44
 *   dac@iver.es
45
 */
46
/* CVS MESSAGES:
47
 *
48
 * $Id$
49
 * $Log$
50
 * Revision 1.1  2007-02-09 14:11:01  jorpiell
51
 * Primer piloto del soporte para WFS 1.1 y para WFS-T
52
 *
53
 *
54
 */
55
/**
56
 * @author Jorge Piera Llodr? (piera_jor@gva.es)
57
 */
58 18271 jpiera
public class WFSException extends Exception {
59 10246 jorpiell
        private static final long serialVersionUID = 1476084093500156070L;
60
        private String wfsCode = null;
61 18271 jpiera
        protected String formatString;
62
        protected String messageKey;
63
        protected long code;
64 10246 jorpiell
65
        public WFSException() {
66
                init();
67 18271 jpiera
        }
68 10246 jorpiell
69 18271 jpiera
        public WFSException(Throwable cause) {
70
                init();
71
                initCause(cause);
72
        }
73
74 10246 jorpiell
        public WFSException(String wfsCode,String message) {
75
                init();
76
                formatString = message;
77
                this.wfsCode = wfsCode;
78
        }
79
80
        protected Map values() {
81
                Hashtable params;
82
                params = new Hashtable();
83
                return params;
84
        }
85
86
        public void init() {
87
                messageKey = "wfs_exception";
88
                formatString = "WFS Exception";
89
                code = serialVersionUID;
90
        }
91
92
        /**
93
         * @return Returns the wfsCode.
94
         */
95
        public String getWfsCode() {
96
                return wfsCode;
97 18271 jpiera
        }
98 10246 jorpiell
}