Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libFMap_dal / src / org / gvsig / fmap / dal / exceptions / UnsupportedEncodingException.java @ 24496

History | View | Annotate | Download (472 Bytes)

1
package org.gvsig.fmap.dal.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
}