Statistics
| Revision:

root / branches / v2_0_0_prep / libraries / libFMap_dal / src / org / gvsig / fmap / dal / feature / exception / GetFeatureTypeException.java @ 38192

History | View | Annotate | Download (569 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 GetFeatureTypeException extends DataException {
6
7
        /**
8
         *
9
         */
10
        private static final long serialVersionUID = 6691256137001562925L;
11
        private final static String MESSAGE_FORMAT = "Can't get feature type of store '%(store)s'.";
12
        private final static String MESSAGE_KEY = "_GetFeatureTypeException";
13
14
        public GetFeatureTypeException(Throwable cause, String store) {
15
                super(MESSAGE_FORMAT, cause, MESSAGE_KEY, serialVersionUID);
16
                setValue("store", store);
17
        }
18
}