Statistics
| Revision:

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

History | View | Annotate | Download (551 Bytes)

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

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

    
5
public class WriteNotAllowedException extends DataException {
6

    
7
        /**
8
         *
9
         */
10
        private static final long serialVersionUID = 4935538241520381746L;
11
        private final static String MESSAGE_FORMAT = "Unsuported writing for the store '%(store)s'.";
12
        private final static String MESSAGE_KEY = "_WriteNotAllowedException";
13

    
14
        public WriteNotAllowedException(String store) {
15
                super(MESSAGE_FORMAT, MESSAGE_KEY, serialVersionUID);
16
                setValue("store", store);
17
        }
18
}