Statistics
| Revision:

root / trunk / libraries / libFMap / src / com / iver / cit / gvsig / exceptions / layers / FileLayerException.java @ 10627

History | View | Annotate | Download (391 Bytes)

1
package com.iver.cit.gvsig.exceptions.layers;
2

    
3

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

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