Statistics
| Revision:

root / branches / v2_0_0_prep / libFMap_mapcontext / src / org / gvsig / fmap / mapcontext / exceptions / FileLayerException.java @ 21200

History | View | Annotate | Download (413 Bytes)

1
package org.gvsig.fmap.mapcontext.exceptions;
2

    
3

    
4

    
5
/**
6
 * @author Vicente Caballero Navarro
7
 */
8
public class FileLayerException extends LoadLayerException {
9

    
10
        public FileLayerException(String l,Throwable exception) {
11
                super(l,exception);
12
                init();
13
        }
14
        /**
15
         *
16
         */
17
        private void init() {
18
                messageKey = "error_file_layer";
19
                formatString = "Can?t found the file of the layer: %(layer) ";
20
        }
21
}