Statistics
| Revision:

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

History | View | Annotate | Download (573 Bytes)

1
package org.gvsig.data.exception;
2

    
3

    
4
public class CloseException extends ReadException {
5

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

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

    
16
        public CloseException(String description,String name) {
17
                super(description,name);
18
                init();
19
        }
20

    
21
        /**
22
         *
23
         */
24
        protected void init() {
25
                super.init();
26
                messageKey = "error_close";
27
                formatString = "Can?t close %(name): %(description) ";
28
        }
29
}