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

History | View | Annotate | Download (508 Bytes)

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

    
3
public class ServerExplorerAddException extends DataException {
4

    
5
        /**
6
         * 
7
         */
8
        private static final long serialVersionUID = -6146358748129171538L;
9
        private final static String MESSAGE_FORMAT = "Exception creating '%(store)'.";
10
        private final static String MESSAGE_KEY = "_ServerExplorerAddException";
11

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

    
17
}