Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.dal / org.gvsig.fmap.dal.file / org.gvsig.fmap.dal.file.lib / src / main / java / org / gvsig / fmap / dal / serverexplorer / filesystem / AbsolutePathRequiredException.java @ 40435

History | View | Annotate | Download (575 Bytes)

1
package org.gvsig.fmap.dal.serverexplorer.filesystem;
2

    
3
import org.gvsig.fmap.dal.exception.CreateException;
4

    
5
public class AbsolutePathRequiredException extends CreateException {
6

    
7
        private static final long serialVersionUID = 8723525042950358334L;
8
        private final static String MESSAGE_FORMAT = "Absolute path required creating '%(resource)'.";
9
        private final static String MESSAGE_KEY = "_AbsolutePathRequiredException";
10

    
11
        public AbsolutePathRequiredException(String resource) {
12
                super(MESSAGE_FORMAT, MESSAGE_KEY, serialVersionUID);
13
                setValue("resource", resource);
14
        }
15

    
16
}
17