Statistics
| Revision:

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

History | View | Annotate | Download (460 Bytes)

1 24496 jmvivo
package org.gvsig.fmap.dal.exceptions;
2 24433 jjdelcerro
3
4
public class DataEvaluatorException extends DataException {
5
6
        /**
7
         *
8
         */
9
        private static final long serialVersionUID = 4694862217382272837L;
10
        private final static String MESSAGE_FORMAT = "Evaluator exception";
11
        private final static String MESSAGE_KEY = "_DataEvaluatorException";
12
13
        public DataEvaluatorException(Throwable cause) {
14
                super(MESSAGE_FORMAT, cause, MESSAGE_KEY, serialVersionUID);
15
        }
16
17
}