Statistics
| Revision:

svn-gvsig-desktop / tags / J2ME_compat_v1_2_Build_1209 / libraries / libFMap / src / com / iver / cit / gvsig / exceptions / layers / ProjectionLayerException.java @ 19509

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 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
}