Statistics
| Revision:

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

History | View | Annotate | Download (543 Bytes)

1 24496 jmvivo
package org.gvsig.fmap.dal.feature.exceptions;
2 23820 jjdelcerro
3 24496 jmvivo
import org.gvsig.fmap.dal.exceptions.DataException;
4 23820 jjdelcerro
5
public class NoNewFeatureInsertException extends DataException {
6
        /**
7
         *
8
         */
9
        private static final long serialVersionUID = 1597158676397711190L;
10
        private final static String MESSAGE_FORMAT = "Exception intializing '%(store)s'.";
11
        private final static String MESSAGE_KEY = "_InitializeException";
12
13
        public NoNewFeatureInsertException(String store) {
14
                super(MESSAGE_FORMAT, MESSAGE_KEY, serialVersionUID);
15
                setValue("store", store);
16
        }
17
18
19
}