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
package org.gvsig.fmap.dal.feature.exceptions;
2

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

    
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
}