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 / AttributeFeatureTypeIntegrityException.java @ 40435

History | View | Annotate | Download (609 Bytes)

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

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

    
5
public class AttributeFeatureTypeIntegrityException extends DataListException {
6

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

    
12
        private final static String MESSAGE_FORMAT = "Integrity error in attribute '%(attrname)s'.";
13
        private final static String MESSAGE_KEY = "_AttributeFeatureTypeIntegrityException";
14

    
15
        public AttributeFeatureTypeIntegrityException(String attrname) {
16
                super(MESSAGE_FORMAT, MESSAGE_KEY, serialVersionUID);
17
                setValue("attrname", attrname);
18
        }
19
}