Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / libraries / libFMap_data / src / org / gvsig / fmap / data / feature / exceptions / XMLInitializeException.java @ 24018

History | View | Annotate | Download (770 Bytes)

1
package org.gvsig.fmap.data.feature.exceptions;
2

    
3
import java.util.Map;
4

    
5
import com.iver.utiles.XMLException;
6

    
7
public class XMLInitializeException extends XMLException {
8

    
9
        /**
10
         *
11
         */
12
        private static final long serialVersionUID = 8769648026876440810L;
13

    
14
        public XMLInitializeException(String name,Throwable exception) {
15
                init();
16
        }
17

    
18
        public XMLInitializeException(String description,String name,Throwable exception) {
19
                init();
20
        }
21

    
22
        public XMLInitializeException(String description,String name) {
23
                init();
24
        }
25
        /**
26
         *
27
         */
28
        protected void init() {
29
                messageKey = "error_initialize";
30
                formatString = "Can?t initialize %(name): %(description) ";
31
        }
32

    
33
        protected Map values() {
34
                // TODO Auto-generated method stub
35
                return null;
36
        }
37
}