Statistics
| Revision:

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

History | View | Annotate | Download (516 Bytes)

1
package org.gvsig.fmap.dal.feature.exceptions;
2

    
3

    
4
public class FeatureTypeIntegrityException extends DataListException {
5

    
6
        /**
7
         *
8
         */
9
        private static final long serialVersionUID = -1599605985631014641L;
10

    
11
        private final static String MESSAGE_FORMAT = "Feature type (%(typeId)s) incorrect.";
12
        private final static String MESSAGE_KEY = "_FeatureTypeIntegrityException";
13

    
14
        public FeatureTypeIntegrityException(String typeId) {
15
                super(MESSAGE_FORMAT, MESSAGE_KEY, serialVersionUID);
16
                setValue("typeId", typeId);
17
        }
18

    
19
}