Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libFMap_data / src / org / gvsig / fmap / data / exceptions / UnsupportedEncodingException.java @ 24152

History | View | Annotate | Download (473 Bytes)

1 23911 jmvivo
package org.gvsig.fmap.data.exceptions;
2
3
4
public class UnsupportedEncodingException extends DataException {
5
6
        /**
7
         *
8
         */
9
        private static final long serialVersionUID = 7149758900102271415L;
10
        private final static String MESSAGE_FORMAT = "Unsupported encoding Exception.";
11
        private final static String MESSAGE_KEY = "_UnsupportedEncodingException";
12
13
        public UnsupportedEncodingException(Throwable cause) {
14
                super(MESSAGE_FORMAT, cause, MESSAGE_KEY, serialVersionUID);
15
        }
16
}