Statistics
| Revision:

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

History | View | Annotate | Download (785 Bytes)

1 24496 jmvivo
package org.gvsig.fmap.dal.feature.exceptions;
2 23772 jjdelcerro
3
import java.util.HashMap;
4
import java.util.Map;
5
6
import org.gvsig.tools.exception.ListBaseException;
7
8
public abstract class DataListException extends ListBaseException {
9
10
11
        /**
12
         *
13
         */
14
        private static final long serialVersionUID = -131815899234291797L;
15
16
        protected Map values = new HashMap();
17
18
        public DataListException(String messageFormat, Throwable cause,
19
                        String messageKey, long code) {
20
                // FIXME: super(messageFormat, cause, messageKey, code);
21
        }
22
23
        public DataListException(String messageFormat, String messageKey, long code) {
24
                // FIXME: super(messageFormat, messageKey, code);
25
        }
26
27
        protected void setValue(String name, String value) {
28
                this.values.put(name, value);
29
        }
30
31
        protected Map values() {
32
                return this.values;
33
        }
34
}