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

History | View | Annotate | Download (453 Bytes)

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

    
3
public class LoadException extends DataException {
4

    
5
        /**
6
         *
7
         */
8
        private static final long serialVersionUID = 1L;
9
        private final static String MESSAGE_FORMAT = "Can't load '%(resource)'.";
10
        private final static String MESSAGE_KEY = "_OpenException";
11

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

    
17
}