Statistics
| Revision:

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

History | View | Annotate | Download (483 Bytes)

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

    
3
public class OpenException extends DataException {
4
        /**
5
         *
6
         */
7
        private static final long serialVersionUID = -8318431541669401823L;
8
        private final static String MESSAGE_FORMAT = "Exception opening '%(store)'.";
9
        private final static String MESSAGE_KEY = "_OpenException";
10

    
11
        public OpenException(String store, Throwable cause) {
12
                super(MESSAGE_FORMAT, cause, MESSAGE_KEY, serialVersionUID);
13
                setValue("store", store);
14
        }
15

    
16
}