Statistics
| Revision:

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

History | View | Annotate | Download (554 Bytes)

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

    
3
public class AttributeFeatureTypeIntegrityException extends DataListException {
4

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

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

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