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 / StoreEditException.java @ 40435

History | View | Annotate | Download (567 Bytes)

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

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

    
5
public class StoreEditException extends DataException {
6

    
7
        /**
8
         *
9
         */
10
        private static final long serialVersionUID = -5529148262961765052L;
11

    
12
        private final static String MESSAGE_FORMAT = "Can't enter in editing mode for store '%(store)s.";
13
        private final static String MESSAGE_KEY = "_StoreEditException";
14

    
15
        public StoreEditException(Throwable cause, String store) {
16
                super(MESSAGE_FORMAT, cause, MESSAGE_KEY, serialVersionUID);
17
                this.setValue("store", store);
18
        }
19
}