Statistics
| Revision:

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

History | View | Annotate | Download (517 Bytes)

1 24496 jmvivo
package org.gvsig.fmap.dal.exceptions;
2 19444 vcaballero
3
4 23774 jjdelcerro
/**
5
 * FIXME
6
 *
7
 *
8
 */
9 20972 vcaballero
10 20112 jmvivo
public class ReadException extends DataException {
11 19444 vcaballero
12 23774 jjdelcerro
        /**
13
         *
14
         */
15
        private static final long serialVersionUID = -8512708060535066804L;
16 23995 jmvivo
        private final static String MESSAGE_FORMAT = "Exception reading '%(store)'.";
17 23774 jjdelcerro
        private final static String MESSAGE_KEY = "_ReadException";
18 19444 vcaballero
19 23774 jjdelcerro
        public ReadException(String store, Throwable cause) {
20
                super(MESSAGE_FORMAT, cause, MESSAGE_KEY, serialVersionUID);
21
                setValue("store", store);
22 20112 jmvivo
        }
23
24 19444 vcaballero
}