Statistics
| Revision:

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

History | View | Annotate | Download (386 Bytes)

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

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

    
8
        public ReloadLayerException(String l,Throwable exception) {
9
                super(l,exception);
10
                init();
11
        }
12
        /**
13
         *
14
         */
15
        private void init() {
16
                messageKey = "error_reload_layer";
17
                formatString = "Can?t reload the layer: %(layer) ";
18
        }
19

    
20
}