Statistics
| Revision:

svn-gvsig-desktop / trunk / libraries / libFMap / src / com / iver / cit / gvsig / exceptions / layers / ReprojectLayerException.java @ 27619

History | View | Annotate | Download (419 Bytes)

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

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

    
8
        public ReprojectLayerException(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 reproject the layer: %(layer) ";
18
        }
19

    
20
}