Statistics
| Revision:

root / branches / dal_time_support / libraries / libFMap_dal / src / org / gvsig / fmap / dal / feature / exception / StoreRedoException.java @ 35970

History | View | Annotate | Download (543 Bytes)

1 24505 jmvivo
package org.gvsig.fmap.dal.feature.exception;
2 23772 jjdelcerro
3 24505 jmvivo
import org.gvsig.fmap.dal.exception.DataException;
4 23772 jjdelcerro
5
public class StoreRedoException extends DataException {
6
7
        /**
8
         *
9
         */
10
        private static final long serialVersionUID = -3619737749583530176L;
11
        private final static String MESSAGE_FORMAT = "Can't redo in store '%(store)s'.";
12
        private final static String MESSAGE_KEY = "_StoreRedoException";
13
14
        public StoreRedoException(Throwable cause, String store) {
15 26032 cordinyana
                super(MESSAGE_FORMAT, cause, MESSAGE_KEY, serialVersionUID);
16 23772 jjdelcerro
                setValue("store", store);
17
        }
18
}