Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / libraries / libFMap_dal / src / org / gvsig / fmap / dal / feature / exception / ConcurrentDataModificationException.java @ 37603

History | View | Annotate | Download (597 Bytes)

1 24505 jmvivo
package org.gvsig.fmap.dal.feature.exception;
2 23772 jjdelcerro
3 26029 jmvivo
import org.gvsig.fmap.dal.exception.DataRuntimeException;
4 23772 jjdelcerro
5 26029 jmvivo
public class ConcurrentDataModificationException extends DataRuntimeException {
6 23772 jjdelcerro
7
        /**
8
         *
9
         */
10
        private static final long serialVersionUID = -8352205502388246169L;
11
        private final static String MESSAGE_FORMAT = "Concurrent modification in store '%(store)s'.";
12
        private final static String MESSAGE_KEY = "_ConcurrentDataModificationException";
13
14
        public ConcurrentDataModificationException(String store) {
15
                super(MESSAGE_FORMAT, MESSAGE_KEY, serialVersionUID);
16
                setValue("store", store);
17
        }
18
}