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 / OpenException.java @ 40435

History | View | Annotate | Download (482 Bytes)

1
package org.gvsig.fmap.dal.exception;
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
}