Statistics
| Revision:

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

History | View | Annotate | Download (549 Bytes)

1 24496 jmvivo
package org.gvsig.fmap.dal.feature.exceptions;
2 23772 jjdelcerro
3 24496 jmvivo
import org.gvsig.fmap.dal.exceptions.DataException;
4 23772 jjdelcerro
5 24017 jjdelcerro
public class IllegalFeatureException extends DataException {
6 23772 jjdelcerro
7
        /**
8
         *
9
         */
10
        private static final long serialVersionUID = 1367845204038351116L;
11
        private final static String MESSAGE_FORMAT = "Feature not allowed for the store '%(store)s'.";
12 24017 jjdelcerro
        private final static String MESSAGE_KEY = "_IllegalFeatureException";
13 23772 jjdelcerro
14 24017 jjdelcerro
        public IllegalFeatureException(String store) {
15 23772 jjdelcerro
                super(MESSAGE_FORMAT, MESSAGE_KEY, serialVersionUID);
16
                setValue("store", store);
17
        }
18
}