Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.dal / org.gvsig.fmap.dal.api / src / main / java / org / gvsig / fmap / dal / feature / exception / FeatureTypeIntegrityException.java @ 40435

History | View | Annotate | Download (571 Bytes)

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

    
3
import org.gvsig.fmap.dal.exception.DataListException;
4

    
5

    
6
public class FeatureTypeIntegrityException extends DataListException {
7

    
8
        /**
9
         *
10
         */
11
        private static final long serialVersionUID = -1599605985631014641L;
12

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

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

    
21
}