Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / libraries / libFMap_data / src / org / gvsig / fmap / data / exceptions / CloseException.java @ 23893

History | View | Annotate | Download (515 Bytes)

1 23754 jjdelcerro
package org.gvsig.fmap.data.exceptions;
2 19444 vcaballero
3 23774 jjdelcerro
/**
4
 * FIXME
5
 *
6
 */
7 19444 vcaballero
8 23774 jjdelcerro
public class CloseException extends DataException {
9 20972 vcaballero
10 19444 vcaballero
        /**
11
         *
12
         */
13 23774 jjdelcerro
        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 19444 vcaballero
        }
21 23774 jjdelcerro
22 19444 vcaballero
}