Statistics
| Revision:

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

History | View | Annotate | Download (399 Bytes)

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

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

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

    
20
}