Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.dal / org.gvsig.fmap.dal.api / src / main / java / org / gvsig / fmap / dal / feature / exception / StoreDeleteEditableFeatureException.java @ 40435

History | View | Annotate | Download (592 Bytes)

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

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

    
5
public class StoreDeleteEditableFeatureException extends DataException {
6

    
7

    
8
        /**
9
         *
10
         */
11
        private static final long serialVersionUID = -996334019316255990L;
12

    
13
        private final static String MESSAGE_FORMAT = "Can't delete an editable feature in store %(store)s.";
14
        private final static String MESSAGE_KEY = "_DeleteEditableFeatureException";
15

    
16
        public StoreDeleteEditableFeatureException(String store) {
17
                super(MESSAGE_FORMAT, MESSAGE_KEY, serialVersionUID);
18
                this.setValue("store", store);
19
        }
20
}