Statistics
| Revision:

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

History | View | Annotate | Download (657 Bytes)

1
package org.gvsig.data.exception;
2

    
3

    
4
public class UnsupportedEncodingException extends OpenException {
5
        public UnsupportedEncodingException(String name,Throwable exception) {
6
                super("Unsuported version",name,exception);
7
                init();
8
        }
9

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

    
15
        public UnsupportedEncodingException(String description,String name) {
16
                super(description,name);
17
                init();
18
        }
19
        /**
20
         *
21
         */
22
        protected void init() {
23
                super.init();
24
                messageKey = "error_unsuported_encoding";
25
                formatString = "Econding problem in %(name): %(description) ";
26
        }
27

    
28
}