Statistics
| Revision:

root / branches / Mobile_Compatible_Hito_1 / libFMap / src-data / org / gvsig / data / exception / InitializeException.java @ 21606

History | View | Annotate | Download (607 Bytes)

1
package org.gvsig.data.exception;
2

    
3

    
4
public class InitializeException extends ReadException {
5

    
6
        public InitializeException(String name,Throwable exception) {
7
                super("Intialize Error",name,exception);
8
                init();
9
        }
10

    
11
        public InitializeException(String description,String name,Throwable exception) {
12
                super(description,name,exception);
13
                init();
14
        }
15

    
16
        public InitializeException(String description,String name) {
17
                super(description,name);
18
                init();
19
        }
20
        /**
21
         *
22
         */
23
        protected void init() {
24
                super.init();
25
                messageKey = "error_initialize";
26
                formatString = "Can?t initialize %(name): %(description) ";
27
        }
28

    
29
}