Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / libraries / libFMap_data / src / org / gvsig / fmap / data / feature / exceptions / FeatureTypeNotAllowedForThisStoreException.java @ 23772

History | View | Annotate | Download (614 Bytes)

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

    
3
import org.gvsig.fmap.data.exceptions.DataException;
4

    
5
public class FeatureTypeNotAllowedForThisStoreException extends DataException {
6

    
7
        /**
8
         *
9
         */
10
        private static final long serialVersionUID = -3151888912258726109L;
11
        private final static String MESSAGE_FORMAT = "Feature type not allowed for the store '%(store)s'.";
12
        private final static String MESSAGE_KEY = "_FeatureTypeNotAllowedForThisStoreException";
13

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