Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libFMap_dal / src / org / gvsig / fmap / dal / feature / exceptions / SelectionNotAllowedException.java @ 24496

History | View | Annotate | Download (565 Bytes)

1 24496 jmvivo
package org.gvsig.fmap.dal.feature.exceptions;
2 23772 jjdelcerro
3 24496 jmvivo
import org.gvsig.fmap.dal.exceptions.DataException;
4 23772 jjdelcerro
5
public class SelectionNotAllowedException extends DataException {
6
7
        /**
8
         *
9
         */
10
        private static final long serialVersionUID = 6572957305406890773L;
11
        private final static String MESSAGE_FORMAT = "Selection not allowed in store %(store)s.";
12
        private final static String MESSAGE_KEY = "_SelectionNotAllowedException";
13
14
        public SelectionNotAllowedException(String store) {
15
                super(MESSAGE_FORMAT, MESSAGE_KEY, serialVersionUID);
16
                this.setValue("store", store);
17
        }
18
}