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

History | View | Annotate | Download (513 Bytes)

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

    
3
/**
4
 * FIXME
5
 *
6
 */
7

    
8
public class CloseException extends DataException {
9

    
10
        /**
11
         *
12
         */
13
        private static final long serialVersionUID = 9186224366705822305L;
14
        private final static String MESSAGE_FORMAT = "Exception closing '%(store)s'.";
15
        private final static String MESSAGE_KEY = "_CloseException";
16

    
17
        public CloseException(String store, Throwable cause) {
18
                super(MESSAGE_FORMAT, cause, MESSAGE_KEY, serialVersionUID);
19
                setValue("store", store);
20
        }
21

    
22
}