Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.dal / org.gvsig.fmap.dal.api / src / main / java / org / gvsig / fmap / dal / exception / ReadException.java @ 40435

History | View | Annotate | Download (516 Bytes)

1
package org.gvsig.fmap.dal.exception;
2

    
3

    
4
/**
5
 * FIXME
6
 *
7
 *
8
 */
9

    
10
public class ReadException extends DataException {
11

    
12
        /**
13
         *
14
         */
15
        private static final long serialVersionUID = -8512708060535066804L;
16
        private final static String MESSAGE_FORMAT = "Exception reading '%(store)'.";
17
        private final static String MESSAGE_KEY = "_ReadException";
18

    
19
        public ReadException(String store, Throwable cause) {
20
                super(MESSAGE_FORMAT, cause, MESSAGE_KEY, serialVersionUID);
21
                setValue("store", store);
22
        }
23

    
24
}